2018-01-11 00:33:19 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff, libiconv, makeWrapper, buildPackages }:
|
2016-05-23 19:41:41 +02:00
|
|
|
|
2014-02-04 23:34:31 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-10 14:39:35 +02:00
|
|
|
name = "man-db-2.9.2";
|
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";
|
2020-06-10 14:39:35 +02:00
|
|
|
sha256 = "0z04kwv5ymmd0pzadpaag696jfckg6rbz8x4jrgj09bmqqk3yf3v";
|
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
|
|
|
|
|
2019-08-09 17:06:59 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper groff ];
|
2018-01-11 00:33:19 +01:00
|
|
|
buildInputs = [ libpipeline db groff ]; # (Yes, 'groff' is both native and build input)
|
|
|
|
checkInputs = [ libiconv /* for 'iconv' binary */ ];
|
2015-12-17 06:30:20 +01:00
|
|
|
|
2020-05-01 18:34:18 +02:00
|
|
|
patches = [ ./systemwide-man-db-conf.patch ];
|
|
|
|
|
2016-09-12 01:12:14 +02:00
|
|
|
postPatch = ''
|
2019-08-15 18:56:29 +02:00
|
|
|
# Remove all mandatory manpaths. Nixpkgs makes no requirements on
|
|
|
|
# these directories existing.
|
|
|
|
sed -i 's/^MANDATORY_MANPATH/# &/' src/man_db.conf.in
|
|
|
|
|
2020-05-01 18:34:18 +02:00
|
|
|
# Add Nix-related manpaths
|
2019-08-15 18:56:29 +02:00
|
|
|
echo "MANPATH_MAP /nix/var/nix/profiles/default/bin /nix/var/nix/profiles/default/share/man" >> src/man_db.conf.in
|
|
|
|
|
|
|
|
# Add mandb locations for the above
|
|
|
|
echo "MANDB_MAP /nix/var/nix/profiles/default/share/man /var/cache/man/nixpkgs" >> src/man_db.conf.in
|
2016-09-12 01:12:14 +02:00
|
|
|
'';
|
|
|
|
|
2015-03-26 20:25:34 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-setuid"
|
2019-08-09 17:06:20 +02:00
|
|
|
"--disable-cache-owner"
|
2015-03-26 20:25:34 +01:00
|
|
|
"--localstatedir=/var"
|
2019-08-09 17:06:20 +02:00
|
|
|
"--with-config-file=${placeholder "out"}/etc/man_db.conf"
|
|
|
|
"--with-systemdtmpfilesdir=${placeholder "out"}/lib/tmpfiles.d"
|
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
2019-09-10 05:56:18 +02:00
|
|
|
"--with-pager=less"
|
2019-08-25 02:14:16 +02:00
|
|
|
] ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin [
|
|
|
|
"ac_cv_func__set_invalid_parameter_handler=no"
|
|
|
|
"ac_cv_func_posix_fadvise=no"
|
|
|
|
"ac_cv_func_mempcpy=no"
|
2015-03-26 20:25:34 +01:00
|
|
|
];
|
|
|
|
|
2017-11-19 15:04:32 +01:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray+=("--with-sections=1 n l 8 3 0 2 5 4 9 6 7")
|
|
|
|
'';
|
|
|
|
|
2016-10-07 12:38:02 +02:00
|
|
|
postInstall = ''
|
2016-12-30 16:54:41 +01: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 12:38:02 +02:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2018-01-11 00:33:19 +01:00
|
|
|
postFixup = stdenv.lib.optionalString (buildPackages.groff != groff) ''
|
|
|
|
# Check to make sure none of the outputs depend on build-time-only groff:
|
|
|
|
for outName in $outputs; do
|
|
|
|
out=''${!outName}
|
|
|
|
echo "Checking $outName(=$out) for references to build-time groff..."
|
|
|
|
if grep -r '${buildPackages.groff}' $out; then
|
|
|
|
echo "Found an erroneous dependency on groff ^^^" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-05-23 19:41:41 +02:00
|
|
|
enableParallelBuilding = true;
|
2015-03-26 20:25:34 +01:00
|
|
|
|
2019-08-25 02:14:16 +02:00
|
|
|
doCheck = !stdenv.hostPlatform.isMusl /* iconv binary */ && !stdenv.hostPlatform.isDarwin;
|
2008-02-07 14:32:48 +01:00
|
|
|
|
2014-02-04 23:34:31 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
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;
|
2019-08-02 16:43:12 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-02-07 14:32:48 +01:00
|
|
|
};
|
2005-08-23 16:19:16 +02:00
|
|
|
}
|