3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/jsonnet/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, emscripten
, enableJsonnetJs ? !stdenv.isDarwin
}:
2015-11-29 02:54:05 +00:00
let version = "0.11.2"; in
2015-11-29 02:54:05 +00:00
stdenv.mkDerivation {
name = "jsonnet-${version}";
version = version;
2015-11-29 02:54:05 +00:00
src = fetchFromGitHub {
2015-11-29 02:54:05 +00:00
rev = "v${version}";
owner = "google";
repo = "jsonnet";
sha256 = "05rl5i4g36k2ikxv4sw726mha1qf5bb66wiqpi0s09wj9azm7vym";
2015-11-29 02:54:05 +00:00
};
buildInputs = if enableJsonnetJs then [ emscripten ] else [ ];
2015-11-29 02:54:05 +00:00
enableParallelBuilding = true;
makeFlags = [''EM_CACHE=$(TMPDIR)/.em_cache''] ++
(if enableJsonnetJs then ["all"] else ["jsonnet" "libjsonnet.so" "libjsonnet++.so"]);
2015-11-29 02:54:05 +00:00
installPhase = ''
mkdir -p $out/bin $out/lib $out/share/
cp jsonnet $out/bin/
cp libjsonnet*.so $out/lib/
2015-11-29 02:54:05 +00:00
cp -a doc $out/share/doc
cp -a include $out/include
'';
meta = {
description = "Purely-functional configuration language that helps you define JSON data";
2016-08-09 20:39:33 +01:00
maintainers = with lib.maintainers; [ benley copumpkin ];
2015-11-29 16:34:10 +00:00
license = lib.licenses.asl20;
2015-11-29 02:54:05 +00:00
homepage = https://github.com/google/jsonnet;
2016-05-28 19:39:45 +01:00
platforms = lib.platforms.unix;
2015-11-29 02:54:05 +00:00
};
}