2022-04-17 15:13:40 +01:00
|
|
|
{ buildPackages
|
|
|
|
, db
|
|
|
|
, fetchurl
|
|
|
|
, groff
|
|
|
|
, lib
|
|
|
|
, libiconv
|
|
|
|
, libpipeline
|
|
|
|
, makeWrapper
|
|
|
|
, nixosTests
|
|
|
|
, pkg-config
|
|
|
|
, stdenv
|
|
|
|
, zstd
|
|
|
|
, autoreconfHook
|
|
|
|
}:
|
2016-05-23 18:41:41 +01:00
|
|
|
|
2014-02-04 22:34:31 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-02 10:40:56 +01:00
|
|
|
pname = "man-db";
|
2022-03-24 11:31:09 +00:00
|
|
|
version = "2.10.2";
|
2016-05-23 18:41:41 +01:00
|
|
|
|
2005-08-23 15:19:16 +01:00
|
|
|
src = fetchurl {
|
2021-08-02 10:40:56 +01:00
|
|
|
url = "mirror://savannah/man-db/man-db-${version}.tar.xz";
|
2022-03-24 11:31:09 +00:00
|
|
|
sha256 = "sha256-7peVTUkqE3MZA8nQcnubAeUIntvWlfDNtY1AWlr1UU0=";
|
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
|
|
|
|
|
2022-04-20 01:39:36 +01:00
|
|
|
strictDeps = true;
|
2021-04-30 14:05:56 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook groff 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 */ ];
|
2015-12-17 05:30:20 +00:00
|
|
|
|
2020-05-01 17:34:18 +01:00
|
|
|
patches = [ ./systemwide-man-db-conf.patch ];
|
|
|
|
|
2016-09-12 00:12:14 +01:00
|
|
|
postPatch = ''
|
2019-08-15 17:56:29 +01: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 17:34:18 +01:00
|
|
|
# Add Nix-related manpaths
|
2019-08-15 17:56:29 +01: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 00:12:14 +01:00
|
|
|
'';
|
|
|
|
|
2015-03-26 19:25:34 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-setuid"
|
2019-08-09 16:06:20 +01:00
|
|
|
"--disable-cache-owner"
|
2015-03-26 19:25:34 +00:00
|
|
|
"--localstatedir=/var"
|
2019-08-09 16:06:20 +01: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 04:56:18 +01:00
|
|
|
"--with-pager=less"
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin [
|
2019-08-25 01:14:16 +01:00
|
|
|
"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
|
|
|
];
|
|
|
|
|
2017-11-19 14:04:32 +00:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray+=("--with-sections=1 n l 8 3 0 2 5 4 9 6 7")
|
|
|
|
'';
|
|
|
|
|
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
|
2022-04-20 01:39:36 +01:00
|
|
|
wrapProgram "$file" \
|
|
|
|
--prefix PATH : "${lib.getBin groff}/bin" \
|
|
|
|
--prefix PATH : "${lib.getBin zstd}/bin"
|
2016-10-07 11:38:02 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2022-04-20 01:39:36 +01:00
|
|
|
disallowedReferences = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
buildPackages.groff
|
|
|
|
];
|
2018-01-10 23:33:19 +00:00
|
|
|
|
2016-05-23 18:41:41 +01:00
|
|
|
enableParallelBuilding = true;
|
2015-03-26 19:25:34 +00:00
|
|
|
|
2019-08-25 01:14:16 +01:00
|
|
|
doCheck = !stdenv.hostPlatform.isMusl /* iconv binary */ && !stdenv.hostPlatform.isDarwin;
|
2008-02-07 13:32:48 +00:00
|
|
|
|
2021-09-24 19:54:08 +01:00
|
|
|
passthru.tests = {
|
|
|
|
nixos = nixosTests.man;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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;
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2021-07-18 10:36:50 +01:00
|
|
|
mainProgram = "man";
|
2008-02-07 13:32:48 +00:00
|
|
|
};
|
2005-08-23 15:19:16 +01:00
|
|
|
}
|