2023-06-08 16:09:56 +00:00
|
|
|
{ stdenv, lib, jekyll, cmake, fetchFromGitHub, gtest }:
|
2015-11-29 02:54:05 +00:00
|
|
|
|
2018-10-08 00:04:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "jsonnet";
|
2023-05-03 20:31:30 +00:00
|
|
|
version = "0.20.0";
|
2023-07-10 09:39:08 +00:00
|
|
|
outputs = [ "out" "doc" ];
|
2015-11-29 02:54:05 +00:00
|
|
|
|
2016-07-19 11:56:24 +00:00
|
|
|
src = fetchFromGitHub {
|
2015-11-29 02:54:05 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
owner = "google";
|
|
|
|
repo = "jsonnet";
|
2023-05-03 20:31:30 +00:00
|
|
|
sha256 = "sha256-FtVJE9alEl56Uik+nCpJMV5DMVVmRCnE1xMAiWdK39Y=";
|
2015-11-29 02:54:05 +00:00
|
|
|
};
|
|
|
|
|
2023-06-08 16:09:56 +00:00
|
|
|
nativeBuildInputs = [ jekyll cmake ];
|
|
|
|
buildInputs = [ gtest ];
|
2021-07-05 17:09:30 +00:00
|
|
|
|
2023-07-10 09:39:08 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DUSE_SYSTEM_GTEST=ON"
|
|
|
|
"-DBUILD_STATIC_LIBS=${if stdenv.hostPlatform.isStatic then "ON" else "OFF"}"
|
2023-07-26 16:42:57 +00:00
|
|
|
] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
2023-07-10 09:39:08 +00:00
|
|
|
"-DBUILD_SHARED_BINARIES=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
|
|
|
|
];
|
|
|
|
|
|
|
|
# https://github.com/google/jsonnet/issues/778
|
|
|
|
patches = [
|
|
|
|
./fix-cpp-unresolved-symbols.patch
|
|
|
|
];
|
2015-11-29 02:54:05 +00:00
|
|
|
|
2023-06-08 16:09:56 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-11-29 02:54:05 +00:00
|
|
|
|
2021-07-05 17:09:30 +00:00
|
|
|
# Upstream writes documentation in html, not in markdown/rst, so no
|
|
|
|
# other output formats, sorry.
|
2023-06-08 16:09:56 +00:00
|
|
|
postBuild = ''
|
|
|
|
jekyll build --source ../doc --destination ./html
|
2021-07-05 17:09:30 +00:00
|
|
|
'';
|
|
|
|
|
2023-06-08 16:09:56 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/doc/jsonnet
|
2021-07-05 17:09:30 +00:00
|
|
|
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;
|
2020-04-01 01:11:51 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|