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

38 lines
868 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub }:
2015-11-29 03:54:05 +01:00
stdenv.mkDerivation rec {
pname = "jsonnet";
2020-02-12 16:55:37 +01:00
version = "0.15.0";
2015-11-29 03:54:05 +01:00
src = fetchFromGitHub {
2015-11-29 03:54:05 +01:00
rev = "v${version}";
owner = "google";
repo = "jsonnet";
2020-02-12 16:55:37 +01:00
sha256 = "06imnpbc5mn1dis051f54q6nq80dbm51nhxmba61rdyhf1131ml8";
2015-11-29 03:54:05 +01:00
};
enableParallelBuilding = true;
makeFlags = [
"jsonnet"
2019-07-03 15:42:18 +02:00
"jsonnetfmt"
"libjsonnet.so"
];
2015-11-29 03:54:05 +01:00
installPhase = ''
mkdir -p $out/bin $out/lib $out/include
2015-11-29 03:54:05 +01:00
cp jsonnet $out/bin/
2019-07-03 15:42:18 +02:00
cp jsonnetfmt $out/bin/
cp libjsonnet*.so $out/lib/
cp -a include/*.h $out/include/
2015-11-29 03:54:05 +01:00
'';
meta = {
description = "Purely-functional configuration language that helps you define JSON data";
2016-08-09 21:39:33 +02:00
maintainers = with lib.maintainers; [ benley copumpkin ];
2015-11-29 17:34:10 +01:00
license = lib.licenses.asl20;
2015-11-29 03:54:05 +01:00
homepage = https://github.com/google/jsonnet;
2016-05-28 20:39:45 +02:00
platforms = lib.platforms.unix;
2015-11-29 03:54:05 +01:00
};
}