summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/go-jsonnet
diff options
context:
space:
mode:
authorElan Kugelmass <64796365+ekpdt@users.noreply.github.com>2020-07-02 19:29:43 -0400
committerGitHub <noreply@github.com>2020-07-02 18:29:43 -0500
commit2b866d8b539fbb65b8ee72aef580074b08c31f53 (patch)
tree3885f6818684afd4a781e3d96d716746d628571a /pkgs/development/compilers/go-jsonnet
parent1c09333e4458d9974ba709522e6af493626a37f9 (diff)
go-jsonnet: add jsonnetfmt binary (#91953)
Add binary jsonnetfmt to go-jsonnet package go-jsonnet added a jsonnetfmt implementation in [0.16.0](https://github.com/google/jsonnet/releases/tag/v0.16.0) As nix includes the C++ jsonnetfmt implementation in the main jsonnet package, it makes sense to mirror that pattern in the go package.
Diffstat (limited to 'pkgs/development/compilers/go-jsonnet')
-rw-r--r--pkgs/development/compilers/go-jsonnet/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/go-jsonnet/default.nix b/pkgs/development/compilers/go-jsonnet/default.nix
index d85cf1adfe78..f528b9f13646 100644
--- a/pkgs/development/compilers/go-jsonnet/default.nix
+++ b/pkgs/development/compilers/go-jsonnet/default.nix
@@ -13,7 +13,7 @@ buildGoModule rec {
vendorSha256 = "0nsm4gsbbn8myz4yfi6m7qc3iizhdambsr18iks0clkdn3mi2jn1";
- subPackages = [ "cmd/jsonnet" ];
+ subPackages = [ "cmd/jsonnet" "cmd/jsonnetfmt" ];
meta = with lib; {
description = "An implementation of Jsonnet in pure Go";
@@ -21,4 +21,4 @@ buildGoModule rec {
license = licenses.asl20;
maintainers = with maintainers; [ nshalman ];
};
-} \ No newline at end of file
+}