nixpkgs/pkgs/development/compilers/jsonnet/default.nix
2015-11-29 04:13:00 -08:00

36 lines
854 B
Nix

{ stdenv, lib, fetchFromGitHub, emscripten }:
let version = "0.8.5"; in
stdenv.mkDerivation {
name = "jsonnet-${version}";
srcs = fetchFromGitHub {
rev = "v${version}";
owner = "google";
repo = "jsonnet";
sha256 = "14raml69zfr38r4qghdgy129vdq2vq1ivl3a2y02isfpijxcajxn";
};
buildInputs = [ emscripten ];
enableParallelBuilding = true;
makeFlags = [''EM_CACHE=$(TMPDIR)/.em_cache'' ''all''];
installPhase = ''
mkdir -p $out/bin $out/lib $out/share/
cp jsonnet $out/bin/
cp libjsonnet.so $out/lib/
cp -a doc $out/share/doc
cp -a include $out/include
'';
meta = {
description = "Purely-functional configuration language that helps you define JSON data";
maintainers = [ lib.maintainers.benley ];
license = lib.licenses.apache;
homepage = https://github.com/google/jsonnet;
};
}