641cb61ef7
The emscripten build of jsonnet is only used in the interactive demo found on jsonnet.org, and I don't think we need to include the whole website in our package. This reduces the transitive closure from ~100mb to ~32mb, and the build duration from ~8 minutes to ~20 seconds on my machine.
36 lines
833 B
Nix
36 lines
833 B
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jsonnet-${version}";
|
|
version = "0.11.2";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "google";
|
|
repo = "jsonnet";
|
|
sha256 = "05rl5i4g36k2ikxv4sw726mha1qf5bb66wiqpi0s09wj9azm7vym";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"jsonnet"
|
|
"libjsonnet.so"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/lib $out/include
|
|
cp jsonnet $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;
|
|
};
|
|
}
|