jsonnet-bundler: init at 0.4.0

gstqt5
Florian Ströger 2020-10-27 19:56:13 +01:00
parent 6f829d2cd9
commit 09edea6af9
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ 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" ];
buildFlagsArray = [ "-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 ];
};
}

View File

@ -13221,6 +13221,8 @@ in
jsonnet = callPackage ../development/compilers/jsonnet { };
jsonnet-bundler = callPackage ../development/tools/jsonnet-bundler { };
go-jsonnet = callPackage ../development/compilers/go-jsonnet { };
jsonrpc-glib = callPackage ../development/libraries/jsonrpc-glib { };