summary refs log tree commit diff
path: root/pkgs/tools/misc/man-db/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/man-db/default.nix')
-rw-r--r--pkgs/tools/misc/man-db/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix
index 3ec429269a3..d77b7ff4812 100644
--- a/pkgs/tools/misc/man-db/default.nix
+++ b/pkgs/tools/misc/man-db/default.nix
@@ -9,12 +9,18 @@ stdenv.mkDerivation rec {
   };
   
   buildInputs = [ pkgconfig libpipeline db groff ];
-  
+
   configureFlags = [
     "--disable-setuid"
     "--sysconfdir=/etc"
     "--localstatedir=/var"
     "--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d"
+    "--with-eqn=${groff}/bin/eqn"
+    "--with-neqn=${groff}/bin/neqn"
+    "--with-nroff=${groff}/bin/nroff"
+    "--with-pic=${groff}/bin/pic"
+    "--with-refer=${groff}/bin/refer"
+    "--with-tbl=${groff}/bin/tbl"
   ];
 
   installFlags = [ "DESTDIR=\${out}" ];