xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / by-name / di / dismap / package.nix
blob4d84aed8961d83df5141a3ad33411aa70ee50c82
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "dismap";
9   version = "0.4";
11   src = fetchFromGitHub {
12     owner = "zhzyker";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-YjjiS6iLIQvrPS378v2nyrgwWBJ9YtDeNTPz0ze05mU=";
16   };
18   vendorHash = "sha256-GnchyE2TswvjYlehhMYesZruTTwyTorfR+17K0RXXFY=";
20   meta = with lib; {
21     description = "Asset discovery and identification tools";
22     mainProgram = "dismap";
23     homepage = "https://github.com/zhzyker/dismap";
24     license = with licenses; [ gpl3Only ];
25     maintainers = with maintainers; [ fab ];
26   };