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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, jekyll, fetchFromGitHub }:
2015-11-29 02:54:05 +00:00
stdenv.mkDerivation rec {
pname = "jsonnet";
2022-01-06 16:02:01 +00:00
version = "0.18.0";
outputs = ["out" "doc"];
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";
2022-01-06 16:02:01 +00:00
sha256 = "sha256-RmuvpKv9Dg3JcxsdZDBMehJjG5SvrV0spHgxApFeuJo=";
2015-11-29 02:54:05 +00:00
};
nativeBuildInputs = [ jekyll ];
2015-11-29 02:54:05 +00:00
enableParallelBuilding = true;
makeFlags = [
"jsonnet"
2019-07-03 13:42:18 +00:00
"jsonnetfmt"
"libjsonnet.so"
];
2015-11-29 02:54:05 +00:00
# Upstream writes documentation in html, not in markdown/rst, so no
# other output formats, sorry.
preBuild = ''
jekyll build --source ./doc --destination ./html
'';
2015-11-29 02:54:05 +00:00
installPhase = ''
mkdir -p $out/bin $out/lib $out/include $out/share/doc/jsonnet
2015-11-29 02:54:05 +00:00
cp jsonnet $out/bin/
2019-07-03 13:42:18 +00:00
cp jsonnetfmt $out/bin/
cp libjsonnet*.so $out/lib/
cp -a include/*.h $out/include/
cp -r ./html $out/share/doc/jsonnet
2015-11-29 02:54:05 +00:00
'';
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;
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
};
}