biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / jsonnet-bundler / default.nix
blob256d90fd76522e84614da5b2d0ca022ea41c98e5
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "jsonnet-bundler";
5   version = "0.5.1";
7   src = fetchFromGitHub {
8     owner = "jsonnet-bundler";
9     repo = "jsonnet-bundler";
10     rev = "v${version}";
11     sha256 = "sha256-vjb5wEiJw48s7FUarpA94ZauFC7iEgRDAkRTwRIZ8pA=";
12   };
14   vendorHash = null;
16   ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
18   meta = with lib; {
19     description = "A jsonnet package manager";
20     homepage = "https://github.com/jsonnet-bundler/jsonnet-bundler";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ preisschild ];
23     mainProgram = "jb";
24   };