mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
jsonnet-bundler: init at 0.4.0
This commit is contained in:
parent
6f829d2cd9
commit
09edea6af9
2 changed files with 28 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue