1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 00:25:24 +00:00
nixpkgs/pkgs/development/compilers/jsonnet/default.nix

38 lines
926 B
Nix
Raw Normal View History

2015-11-29 02:54:05 +00:00
{ stdenv, lib, fetchFromGitHub, emscripten }:
let version = "0.10.0"; 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 = "0xj540140r89qrdh3h4kzlz4x8c576ynq9i1x82zzl3d7fxbk5f0";
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 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
};
}