33 lines
646 B
Nix
33 lines
646 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "jsonnet-bundler";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jsonnet-bundler";
|
|
repo = "jsonnet-bundler";
|
|
rev = "v${version}";
|
|
hash = "sha256-VaYfjDSDst1joN2MnDVdz9SGGMamhYxfNM/a2mJf8Lo=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Jsonnet package manager";
|
|
homepage = "https://github.com/jsonnet-bundler/jsonnet-bundler";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ preisschild ];
|
|
mainProgram = "jb";
|
|
};
|
|
}
|