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

36 lines
833 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub }:
2015-11-29 02:54:05 +00:00
stdenv.mkDerivation rec {
2015-11-29 02:54:05 +00:00
name = "jsonnet-${version}";
2019-06-05 16:18:28 +01:00
version = "0.13.0";
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";
2019-06-05 16:18:28 +01:00
sha256 = "1fibr1kysbxcf8jp2a4xvs3n7i8d9k2430agxzc9mdyqrh79zlxk";
2015-11-29 02:54:05 +00:00
};
enableParallelBuilding = true;
makeFlags = [
"jsonnet"
"libjsonnet.so"
];
2015-11-29 02:54:05 +00:00
installPhase = ''
mkdir -p $out/bin $out/lib $out/include
2015-11-29 02:54:05 +00:00
cp jsonnet $out/bin/
cp libjsonnet*.so $out/lib/
cp -a include/*.h $out/include/
2015-11-29 02:54:05 +00:00
'';
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
};
}