mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #101865 from Preisschild/jsonnet-bundler/init
This commit is contained in:
commit
e0c7219ed1
3 changed files with 34 additions and 0 deletions
|
@ -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";
|
||||||
|
|
26
pkgs/development/tools/jsonnet-bundler/default.nix
Normal file
26
pkgs/development/tools/jsonnet-bundler/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -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 { };
|
||||||
|
|
Loading…
Reference in a new issue