2022-05-18 14:49:53 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, perlPackages, gettext, libintl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
|
# files.
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-21 07:28:18 +00:00
|
|
|
|
pname = "help2man";
|
2022-07-14 12:49:19 +00:00
|
|
|
|
version = "1.49.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-21 07:28:18 +00:00
|
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
|
2022-07-14 12:49:19 +00:00
|
|
|
|
sha256 = "sha256-ni4OITp+CjYkTu1iBNkCtlBGAqV4tuzRUmixRU3q3TY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
|
nativeBuildInputs = [ gettext perlPackages.perl perlPackages.LocaleGettext ];
|
2022-05-18 14:49:53 +00:00
|
|
|
|
buildInputs = [ perlPackages.LocaleGettext libintl ];
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
|
"--enable-nls"
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
doCheck = false; # target `check' is missing
|
|
|
|
|
|
|
|
|
|
patches = if stdenv.hostPlatform.isCygwin then [ ./1.40.4-cygwin-nls.patch ] else null;
|
|
|
|
|
|
|
|
|
|
# We don't use makeWrapper here because it uses substitutions our
|
|
|
|
|
# bootstrap shell can't handle.
|
|
|
|
|
postInstall = ''
|
|
|
|
|
mv $out/bin/help2man $out/bin/.help2man-wrapped
|
|
|
|
|
cat > $out/bin/help2man <<EOF
|
|
|
|
|
#! $SHELL -e
|
|
|
|
|
export PERL5LIB=\''${PERL5LIB:+:}${perlPackages.LocaleGettext}/${perlPackages.perl.libPrefix}
|
2021-02-05 17:12:51 +00:00
|
|
|
|
${lib.optionalString stdenv.hostPlatform.isCygwin
|
2020-04-24 23:36:52 +00:00
|
|
|
|
''export PATH=\''${PATH:+:}${gettext}/bin''}
|
|
|
|
|
exec -a \$0 $out/bin/.help2man-wrapped "\$@"
|
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/help2man
|
|
|
|
|
'';
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Generate man pages from `--help' output";
|
|
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
|
'' help2man produces simple manual pages from the ‘--help’ and
|
|
|
|
|
‘--version’ output of other commands.
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
homepage = "https://www.gnu.org/software/help2man/";
|
|
|
|
|
|
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
|
};
|
|
|
|
|
}
|