2014-02-04 23:34:31 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff }:
|
2016-05-23 19:41:41 +02:00
|
|
|
|
2014-02-04 23:34:31 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-11-08 03:53:06 +01:00
|
|
|
name = "man-db-2.7.5";
|
2016-05-23 19:41:41 +02:00
|
|
|
|
2005-08-23 16:19:16 +02:00
|
|
|
src = fetchurl {
|
2014-02-04 23:34:31 +01:00
|
|
|
url = "mirror://savannah/man-db/${name}.tar.xz";
|
2015-11-08 03:53:06 +01:00
|
|
|
sha256 = "056a3il7agfazac12yggcg4gf412yq34k065im0cpfxbcw6xskaw";
|
2005-08-23 16:19:16 +02:00
|
|
|
};
|
2016-05-23 19:41:41 +02:00
|
|
|
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
outputMan = "out"; # users will want `man man` to work
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libpipeline db groff ];
|
2015-12-17 06:30:20 +01:00
|
|
|
|
2015-03-26 20:25:34 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-setuid"
|
|
|
|
"--localstatedir=/var"
|
2016-05-23 19:41:41 +02:00
|
|
|
# Don't try /etc/man_db.conf by default, so we avoid error messages.
|
|
|
|
"--with-config-file=\${out}/etc/man_db.conf"
|
2015-03-26 20:25:34 +01:00
|
|
|
"--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d"
|
2015-12-17 06:30:20 +01:00
|
|
|
"--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"
|
2015-03-26 20:25:34 +01:00
|
|
|
];
|
|
|
|
|
2016-05-23 19:41:41 +02:00
|
|
|
enableParallelBuilding = true;
|
2015-03-26 20:25:34 +01:00
|
|
|
|
2016-05-23 19:41:41 +02:00
|
|
|
doCheck = true;
|
2008-02-07 14:32:48 +01:00
|
|
|
|
2014-02-04 23:34:31 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://man-db.nongnu.org";
|
2008-02-07 14:32:48 +01:00
|
|
|
description = "An implementation of the standard Unix documentation system accessed using the man command";
|
2014-02-04 23:34:31 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2008-02-07 14:32:48 +01:00
|
|
|
};
|
2005-08-23 16:19:16 +02:00
|
|
|
}
|