tahoe-lafs: build HTML and info documentation

wip/yesman
Jan Malakhovski 6 years ago
parent 7e00b9d652
commit 23a814e1ad
  1. 22
      pkgs/tools/networking/p2p/tahoe-lafs/default.nix

@ -1,4 +1,4 @@
{ fetchurl, lib, unzip, nettools, pythonPackages }:
{ fetchurl, lib, unzip, nettools, pythonPackages, texinfo }:
# FAILURES: The "running build_ext" phase fails to compile Twisted
# plugins, because it tries to write them into Twisted's (immutable)
@ -15,6 +15,8 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0x9f1kjym1188fp6l5sqy0zz8mdb4xw861bni2ccv26q482ynbks";
};
outputs = [ "out" "doc" "info" ];
patchPhase = ''
sed -i "src/allmydata/util/iputil.py" \
-es"|_linux_path = '/sbin/ifconfig'|_linux_path = '${nettools}/bin/ifconfig'|g"
@ -30,6 +32,8 @@ pythonPackages.buildPythonApplication rec {
sed -i 's/"pycrypto.*"/"pycrypto"/' src/allmydata/_auto_deps.py
'';
nativeBuildInputs = with pythonPackages; [ sphinx texinfo ];
buildInputs = with pythonPackages; [ unzip numpy mock ];
# The `backup' command requires `sqlite3'.
@ -39,11 +43,19 @@ pythonPackages.buildPythonApplication rec {
service-identity pyyaml
];
# Install the documentation.
postInstall = ''
# Install the documentation.
mkdir -p "$out/share/doc/${name}"
cp -rv "docs/"* "$out/share/doc/${name}"
find "$out/share/doc/${name}" -name Makefile -exec rm -v {} \;
(
cd docs
make singlehtml
mkdir -p "$doc/share/doc/${name}"
cp -rv _build/singlehtml/* "$doc/share/doc/${name}"
make info
mkdir -p "$info/share/info"
cp -rv _build/texinfo/*.info "$info/share/info"
)
'';
checkPhase = ''

Loading…
Cancel
Save