nixpkgs/pkgs/tools/misc/man-db/default.nix

102 lines
3.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libpipeline, db, groff, libiconv, makeWrapper, buildPackages, nixosTests }:
stdenv.mkDerivation rec {
pname = "man-db";
2022-03-24 11:31:09 +00:00
version = "2.10.2";
src = fetchurl {
url = "mirror://savannah/man-db/man-db-${version}.tar.xz";
2022-03-24 11:31:09 +00:00
sha256 = "sha256-7peVTUkqE3MZA8nQcnubAeUIntvWlfDNtY1AWlr1UU0=";
};
outputs = [ "out" "doc" ];
outputMan = "out"; # users will want `man man` to work
2021-04-29 09:06:52 +00:00
nativeBuildInputs = [ autoconf automake gettext groff libtool makeWrapper pkg-config zstd ];
2018-01-10 23:33:19 +00:00
buildInputs = [ libpipeline db groff ]; # (Yes, 'groff' is both native and build input)
checkInputs = [ libiconv /* for 'iconv' binary */ ];
patches = [ ./systemwide-man-db-conf.patch ];
2016-09-11 23:12:14 +00:00
postPatch = ''
2019-08-15 16:56:29 +00:00
# Remove all mandatory manpaths. Nixpkgs makes no requirements on
# these directories existing.
sed -i 's/^MANDATORY_MANPATH/# &/' src/man_db.conf.in
# Add Nix-related manpaths
2019-08-15 16:56:29 +00: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
2021-04-29 09:06:52 +00:00
# use absolute paths to reference programs, otherwise artifacts will have undeclared dependencies
for f in configure.ac m4/man-check-progs.m4 m4/man-po4a.m4; do
substituteInPlace $f \
--replace AC_CHECK_PROGS AC_PATH_PROGS
done
2016-09-11 23:12:14 +00:00
'';
2015-03-26 19:25:34 +00:00
configureFlags = [
"--disable-setuid"
2019-08-09 15:06:20 +00:00
"--disable-cache-owner"
2015-03-26 19:25:34 +00:00
"--localstatedir=/var"
2019-08-09 15:06:20 +00:00
"--with-config-file=${placeholder "out"}/etc/man_db.conf"
"--with-systemdtmpfilesdir=${placeholder "out"}/lib/tmpfiles.d"
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
"--with-pager=less"
2021-01-15 09:19:50 +00:00
] ++ 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 19:25:34 +00:00
];
2021-04-29 09:06:52 +00:00
preConfigure = ''
2021-04-29 09:06:52 +00:00
# need to recreate configure script due to substitutions in postPatch
./bootstrap --gnulib-srcdir=${gnulib.src} --no-git
# deal with autoconf 2.70 bug: https://lists.gnu.org/archive/html/bug-autoconf/2020-12/msg00036.html
# can be removed once autoconf 2.71 is merged
patch < ${./fix-configure.patch}
configureFlagsArray+=("--with-sections=1 n l 8 3 0 2 5 4 9 6 7")
'';
postInstall = ''
# 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"
done
'';
2021-01-15 09:19:50 +00:00
postFixup = lib.optionalString (buildPackages.groff != groff) ''
2018-01-10 23:33:19 +00:00
# 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
'';
enableParallelBuilding = true;
2015-03-26 19:25:34 +00:00
doCheck = !stdenv.hostPlatform.isMusl /* iconv binary */ && !stdenv.hostPlatform.isDarwin;
passthru.tests = {
nixos = nixosTests.man;
};
meta = with lib; {
homepage = "http://man-db.nongnu.org";
description = "An implementation of the standard Unix documentation system accessed using the man command";
license = licenses.gpl2;
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
2021-07-18 09:36:50 +00:00
mainProgram = "man";
};
}