about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorrushmorem <rushmore@webenchanter.com>2016-09-02 20:57:08 +0200
committerrushmorem <rushmore@webenchanter.com>2016-09-02 20:57:08 +0200
commit757975c4398403d3b28dfb0313d80784e0176a04 (patch)
treec8ee9434130f44cb0db7daec95755ca4eb597cf3 /pkgs/tools/filesystems
parent32d06b2a519aa257e59c9fc1fccbf8cc2d7d1a2c (diff)
downloadnixlib-757975c4398403d3b28dfb0313d80784e0176a04.tar
nixlib-757975c4398403d3b28dfb0313d80784e0176a04.tar.gz
nixlib-757975c4398403d3b28dfb0313d80784e0176a04.tar.bz2
nixlib-757975c4398403d3b28dfb0313d80784e0176a04.tar.lz
nixlib-757975c4398403d3b28dfb0313d80784e0176a04.tar.xz
nixlib-757975c4398403d3b28dfb0313d80784e0176a04.tar.zst
nixlib-757975c4398403d3b28dfb0313d80784e0176a04.zip
lizardfs: fix building manpages
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/lizardfs/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/lizardfs/default.nix b/pkgs/tools/filesystems/lizardfs/default.nix
index b956083840bd..0301d2e18fbf 100644
--- a/pkgs/tools/filesystems/lizardfs/default.nix
+++ b/pkgs/tools/filesystems/lizardfs/default.nix
@@ -7,6 +7,8 @@
 , asciidoc
 , libxml2
 , libxslt
+, docbook_xml_dtd_412
+, docbook_xsl
 , boost
 , pkgconfig
 , judy
@@ -25,7 +27,10 @@ stdenv.mkDerivation rec {
     sha256 = "18p2pj9crjqgxxxzdfcs3j3fqhinmwi7qxcf71jsw17syqwyygh8";
   };
 
-  buildInputs = [ cmake fuse asciidoc libxml2.bin libxslt.bin zlib boost pkgconfig judy pam makeWrapper ];
+  buildInputs = 
+    [ cmake fuse asciidoc libxml2 libxslt docbook_xml_dtd_412 docbook_xsl
+      zlib boost pkgconfig judy pam makeWrapper
+    ];
 
   patches = [ ./412.patch ];