aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/compilers/jsonnet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/compilers/jsonnet/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/compilers/jsonnet/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/compilers/jsonnet/default.nix b/infra/libkookie/nixpkgs/pkgs/development/compilers/jsonnet/default.nix
new file mode 100644
index 000000000000..be03f53a76ee
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/compilers/jsonnet/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, lib, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ pname = "jsonnet";
+ version = "0.17.0";
+
+ src = fetchFromGitHub {
+ rev = "v${version}";
+ owner = "google";
+ repo = "jsonnet";
+ sha256 = "1ddz14699v5lqx3dh0mb7hfffr6fk5zhmzn3z8yxkqqvriqnciim";
+ };
+
+ enableParallelBuilding = true;
+
+ makeFlags = [
+ "jsonnet"
+ "jsonnetfmt"
+ "libjsonnet.so"
+ ];
+
+ installPhase = ''
+ mkdir -p $out/bin $out/lib $out/include
+ cp jsonnet $out/bin/
+ cp jsonnetfmt $out/bin/
+ cp libjsonnet*.so $out/lib/
+ cp -a include/*.h $out/include/
+ '';
+
+ meta = {
+ description = "Purely-functional configuration language that helps you define JSON data";
+ maintainers = with lib.maintainers; [ benley copumpkin ];
+ license = lib.licenses.asl20;
+ homepage = "https://github.com/google/jsonnet";
+ platforms = lib.platforms.unix;
+ };
+}