nixpkgs/pkgs/development/compilers/jsonnet/default.nix

37 lines
904 B
Nix
Raw Normal View History

2015-11-29 02:54:05 +00:00
{ stdenv, lib, fetchFromGitHub, emscripten }:
2016-08-09 19:39:33 +00:00
let version = "0.8.9"; in
2015-11-29 02:54:05 +00:00
stdenv.mkDerivation {
name = "jsonnet-${version}";
src = fetchFromGitHub {
2015-11-29 02:54:05 +00:00
rev = "v${version}";
owner = "google";
repo = "jsonnet";
2016-08-09 19:39:33 +00:00
sha256 = "0phk8dzby5v60r7fwd1qf4as2jdpmdmksjw3g4p3mkkr7sc81119";
2015-11-29 02:54:05 +00:00
};
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";
2016-08-09 19:39:33 +00: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 18:39:45 +00:00
platforms = lib.platforms.unix;
2015-11-29 02:54:05 +00:00
};
}