jsonnet: add output with html documentation (#128990)

Co-authored-by: Dmitry Bogatov <git#v1@kaction.cc>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Dmitry Bogatov 2021-07-05 13:09:30 -04:00 committed by GitHub
parent 2f62c2f53d
commit 3b901be6bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,9 @@
{ stdenv, lib, fetchFromGitHub }:
{ stdenv, lib, jekyll, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "jsonnet";
version = "0.17.0";
outputs = ["out" "doc"];
src = fetchFromGitHub {
rev = "v${version}";
@ -11,6 +12,8 @@ stdenv.mkDerivation rec {
sha256 = "1ddz14699v5lqx3dh0mb7hfffr6fk5zhmzn3z8yxkqqvriqnciim";
};
nativeBuildInputs = [ jekyll ];
enableParallelBuilding = true;
makeFlags = [
@ -19,12 +22,19 @@ stdenv.mkDerivation rec {
"libjsonnet.so"
];
# Upstream writes documentation in html, not in markdown/rst, so no
# other output formats, sorry.
preBuild = ''
jekyll build --source ./doc --destination ./html
'';
installPhase = ''
mkdir -p $out/bin $out/lib $out/include
mkdir -p $out/bin $out/lib $out/include $out/share/doc/jsonnet
cp jsonnet $out/bin/
cp jsonnetfmt $out/bin/
cp libjsonnet*.so $out/lib/
cp -a include/*.h $out/include/
cp -r ./html $out/share/doc/jsonnet
'';
meta = {