mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
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:
parent
2f62c2f53d
commit
3b901be6bb
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user