Merge pull request #101865 from Preisschild/jsonnet-bundler/init

This commit is contained in:
Sandro 2020-11-27 00:29:22 +01:00 committed by GitHub
commit e0c7219ed1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -6981,6 +6981,12 @@
fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E"; fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E";
}]; }];
}; };
preisschild = {
email = "florian@florianstroeger.com";
github = "Preisschild";
githubId = 11898437;
name = "Florian Ströger";
};
priegger = { priegger = {
email = "philipp@riegger.name"; email = "philipp@riegger.name";
github = "priegger"; github = "priegger";

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

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