2016-10-07 11:38:02 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff, makeWrapper }:
|
2016-05-23 18:41:41 +01:00
|
|
|
|
2014-02-04 22:34:31 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-11-08 02:53:06 +00:00
|
|
|
name = "man-db-2.7.5";
|
2016-05-23 18:41:41 +01:00
|
|
|
|
2005-08-23 15:19:16 +01:00
|
|
|
src = fetchurl {
|
2014-02-04 22:34:31 +00:00
|
|
|
url = "mirror://savannah/man-db/${name}.tar.xz";
|
2015-11-08 02:53:06 +00:00
|
|
|
sha256 = "056a3il7agfazac12yggcg4gf412yq34k065im0cpfxbcw6xskaw";
|
2005-08-23 15:19:16 +01:00
|
|
|
};
|
2016-05-23 18:41:41 +01:00
|
|
|
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
outputMan = "out"; # users will want `man man` to work
|
|
|
|
|
2016-10-07 11:38:02 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
2016-05-23 18:41:41 +01:00
|
|
|
buildInputs = [ libpipeline db groff ];
|
2015-12-17 05:30:20 +00:00
|
|
|
|
2016-09-12 00:12:14 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/man_db.conf.in \
|
|
|
|
--replace "/usr/local/share" "/run/current-system/sw/share" \
|
|
|
|
--replace "/usr/share" "/run/current-system/sw/share"
|
|
|
|
'';
|
|
|
|
|
2015-03-26 19:25:34 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-setuid"
|
|
|
|
"--localstatedir=/var"
|
2016-05-23 18:41:41 +01: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 19:25:34 +00:00
|
|
|
"--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d"
|
|
|
|
];
|
|
|
|
|
2016-10-07 11:38:02 +01:00
|
|
|
postInstall = ''
|
2016-12-30 15:54:41 +00:00
|
|
|
# apropos/whatis uses program name to decide whether to act like apropos or whatis
|
|
|
|
# (multi-call binary). `apropos` is actually just a symlink to whatis. So we need to
|
|
|
|
# make sure that we don't wrap symlinks (since that changes argv[0] to the -wrapped name)
|
|
|
|
find "$out/bin" -type f | while read file; do
|
|
|
|
wrapProgram "$file" --prefix PATH : "${groff}/bin"
|
2016-10-07 11:38:02 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-05-23 18:41:41 +01:00
|
|
|
enableParallelBuilding = true;
|
2015-03-26 19:25:34 +00:00
|
|
|
|
2016-05-23 18:41:41 +01:00
|
|
|
doCheck = true;
|
2008-02-07 13:32:48 +00:00
|
|
|
|
2014-02-04 22:34:31 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://man-db.nongnu.org";
|
2008-02-07 13:32:48 +00:00
|
|
|
description = "An implementation of the standard Unix documentation system accessed using the man command";
|
2014-02-04 22:34:31 +00:00
|
|
|
license = licenses.gpl2;
|
2016-09-01 18:39:33 +01:00
|
|
|
platforms = platforms.linux;
|
2008-02-07 13:32:48 +00:00
|
|
|
};
|
2005-08-23 15:19:16 +01:00
|
|
|
}
|