2018-10-05 15:46:58 +01:00
|
|
|
{ pkgs ? (import ./.. { }), nixpkgs ? { }}:
|
2015-12-19 15:04:36 +00:00
|
|
|
let
|
2019-07-04 13:23:39 +01:00
|
|
|
doc-support = import ./doc-support { inherit pkgs nixpkgs; };
|
2018-12-30 00:10:19 +00:00
|
|
|
in pkgs.stdenv.mkDerivation {
|
2014-08-24 10:02:23 +01:00
|
|
|
name = "nixpkgs-manual";
|
|
|
|
|
2020-12-05 12:47:29 +00:00
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
pandoc
|
|
|
|
graphviz
|
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
zip
|
|
|
|
jing
|
|
|
|
xmlformat
|
|
|
|
];
|
2014-08-24 10:02:23 +01:00
|
|
|
|
2023-02-07 12:58:34 +00:00
|
|
|
src = pkgs.nix-gitignore.gitignoreSource [] ./.;
|
2018-03-24 15:36:10 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2019-07-04 13:27:16 +01:00
|
|
|
ln -s ${doc-support} ./doc-support/result
|
2018-03-24 15:36:10 +00:00
|
|
|
'';
|
2014-08-24 10:02:23 +01:00
|
|
|
|
2023-04-25 13:37:50 +01:00
|
|
|
preBuild = ''
|
|
|
|
make -j$NIX_BUILD_CORES render-md
|
|
|
|
'';
|
|
|
|
|
2018-03-24 15:36:10 +00:00
|
|
|
installPhase = ''
|
|
|
|
dest="$out/share/doc/nixpkgs"
|
|
|
|
mkdir -p "$(dirname "$dest")"
|
|
|
|
mv out/html "$dest"
|
|
|
|
mv "$dest/index.html" "$dest/manual.html"
|
2016-07-20 16:57:31 +01:00
|
|
|
|
2018-03-24 15:36:10 +00:00
|
|
|
mv out/epub/manual.epub "$dest/nixpkgs-manual.epub"
|
2016-07-20 16:57:31 +01:00
|
|
|
|
2018-03-24 15:36:10 +00:00
|
|
|
mkdir -p $out/nix-support/
|
|
|
|
echo "doc manual $dest manual.html" >> $out/nix-support/hydra-build-products
|
2018-06-06 21:36:17 +01:00
|
|
|
echo "doc manual $dest nixpkgs-manual.epub" >> $out/nix-support/hydra-build-products
|
2014-08-24 10:02:23 +01:00
|
|
|
'';
|
2021-06-04 08:29:58 +01:00
|
|
|
|
|
|
|
# Environment variables
|
|
|
|
PANDOC_LUA_FILTERS_DIR = "${pkgs.pandoc-lua-filters}/share/pandoc/filters";
|
2023-01-02 13:00:58 +00:00
|
|
|
PANDOC_LINK_MANPAGES_FILTER = import build-aux/pandoc-filters/link-manpages.nix { inherit pkgs; };
|
2014-08-24 10:02:23 +01:00
|
|
|
}
|