biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gopkgs / default.nix
blobba7d9ffccde3f542babfe43df3bcba0c8532f390
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gopkgs";
5   version = "2.1.2";
7   src = fetchFromGitHub {
8     rev = "v${version}";
9     owner = "uudashr";
10     repo = "gopkgs";
11     hash = "sha256-ll5fhwzzCNL0UtMLNSGOY6Yyy0EqI8OZ1iqWad4KU8k=";
12   };
14   vendorHash = "sha256-WVikDxf79nEahKRn4Gw7Pv8AULQXW+RXGoA3ihBhmt8=";
16   subPackages = [ "cmd/gopkgs" ];
18   doCheck = false;
20   meta = {
21     description = "Tool to get list available Go packages";
22     mainProgram = "gopkgs";
23     homepage = "https://github.com/uudashr/gopkgs";
24     maintainers = with lib.maintainers; [ vdemeester ];
25     license = lib.licenses.mit;
26   };