2018-10-05 14:46:58 +00:00
|
|
|
{ pkgs ? (import ./.. { }), nixpkgs ? { }}:
|
2015-12-19 15:04:36 +00:00
|
|
|
let
|
2016-07-20 15:57:31 +00:00
|
|
|
lib = pkgs.lib;
|
2019-07-04 12:23:39 +00:00
|
|
|
doc-support = import ./doc-support { inherit pkgs nixpkgs; };
|
2018-12-30 00:10:19 +00:00
|
|
|
in pkgs.stdenv.mkDerivation {
|
2014-08-24 09:02:23 +00:00
|
|
|
name = "nixpkgs-manual";
|
|
|
|
|
2018-05-01 02:35:54 +00:00
|
|
|
buildInputs = with pkgs; [ pandoc libxml2 libxslt zip jing xmlformat ];
|
2014-08-24 09:02:23 +00:00
|
|
|
|
2018-03-24 15:36:10 +00:00
|
|
|
src = ./.;
|
|
|
|
|
|
|
|
postPatch = ''
|
2019-07-04 12:27:16 +00:00
|
|
|
ln -s ${doc-support} ./doc-support/result
|
2018-03-24 15:36:10 +00:00
|
|
|
'';
|
2014-08-24 09:02:23 +00:00
|
|
|
|
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 15:57:31 +00:00
|
|
|
|
2018-03-24 15:36:10 +00:00
|
|
|
mv out/epub/manual.epub "$dest/nixpkgs-manual.epub"
|
2016-07-20 15:57:31 +00: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 20:36:17 +00:00
|
|
|
echo "doc manual $dest nixpkgs-manual.epub" >> $out/nix-support/hydra-build-products
|
2014-08-24 09:02:23 +00:00
|
|
|
'';
|
|
|
|
}
|