2018-10-05 17:46:58 +03:00
|
|
|
{ pkgs ? (import ./.. { }), nixpkgs ? { }}:
|
2015-12-19 18:04:36 +03:00
|
|
|
let
|
2016-07-20 18:57:31 +03:00
|
|
|
lib = pkgs.lib;
|
2019-07-04 15:23:39 +03:00
|
|
|
doc-support = import ./doc-support { inherit pkgs nixpkgs; };
|
2018-12-30 03:10:19 +03:00
|
|
|
in pkgs.stdenv.mkDerivation {
|
2014-08-24 13:02:23 +04:00
|
|
|
name = "nixpkgs-manual";
|
|
|
|
|
2020-12-05 15:47:29 +03:00
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
pandoc
|
|
|
|
graphviz
|
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
zip
|
|
|
|
jing
|
|
|
|
xmlformat
|
|
|
|
];
|
2014-08-24 13:02:23 +04:00
|
|
|
|
2021-02-08 20:47:22 +03:00
|
|
|
src = lib.cleanSource ./.;
|
2018-03-24 18:36:10 +03:00
|
|
|
|
|
|
|
postPatch = ''
|
2019-07-04 15:27:16 +03:00
|
|
|
ln -s ${doc-support} ./doc-support/result
|
2018-03-24 18:36:10 +03:00
|
|
|
'';
|
2014-08-24 13:02:23 +04:00
|
|
|
|
2018-03-24 18:36:10 +03: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 18:57:31 +03:00
|
|
|
|
2018-03-24 18:36:10 +03:00
|
|
|
mv out/epub/manual.epub "$dest/nixpkgs-manual.epub"
|
2016-07-20 18:57:31 +03:00
|
|
|
|
2018-03-24 18:36:10 +03:00
|
|
|
mkdir -p $out/nix-support/
|
|
|
|
echo "doc manual $dest manual.html" >> $out/nix-support/hydra-build-products
|
2018-06-06 23:36:17 +03:00
|
|
|
echo "doc manual $dest nixpkgs-manual.epub" >> $out/nix-support/hydra-build-products
|
2014-08-24 13:02:23 +04:00
|
|
|
'';
|
2021-06-04 10:29:58 +03:00
|
|
|
|
|
|
|
# Environment variables
|
|
|
|
PANDOC_LUA_FILTERS_DIR = "${pkgs.pandoc-lua-filters}/share/pandoc/filters";
|
2014-08-24 13:02:23 +04:00
|
|
|
}
|