My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/jsonnet-bundler/default.nix

27 lines
663 B

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "jsonnet-bundler";
version = "0.4.0";
src = fetchFromGitHub {
owner = "jsonnet-bundler";
repo = "jsonnet-bundler";
rev = "v${version}";
sha256 = "0pk6nf8r0wy7lnsnzyjd3vgq4b2kb3zl0xxn01ahpaqgmwpzajlk";
};
vendorSha256 = null;
subPackages = [ "cmd/jb" ];
ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
meta = with lib; {
description = "A jsonnet package manager";
homepage = "https://github.com/jsonnet-bundler/jsonnet-bundler";
license = licenses.asl20;
maintainers = with maintainers; [ preisschild ];
mainProgram = "jb";
};
}