2021-12-14 04:04:02 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, perlPackages, gettext, libintl }:
|
2005-05-18 21:15:29 +00:00
|
|
|
|
|
2020-06-26 20:44:45 +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.
|
|
|
|
|
|
2012-01-31 15:31:23 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 10:34:30 +00:00
|
|
|
|
pname = "help2man";
|
2023-01-22 21:14:27 +00:00
|
|
|
|
version = "1.49.3";
|
2005-05-18 21:15:29 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2023-01-22 21:14:27 +00:00
|
|
|
|
url = "mirror://gnu/help2man/help2man-${version}.tar.xz";
|
|
|
|
|
sha256 = "sha256-TX5P3vLspq/geiaCFRzqeHgeCk6PliIULZ9wwIOi/U8=";
|
2005-05-18 21:15:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-10-22 20:05:40 +00:00
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
2022-05-14 01:13:49 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2021-10-22 20:05:40 +00:00
|
|
|
|
nativeBuildInputs = [ gettext perlPackages.perl perlPackages.LocaleGettext ];
|
2021-12-14 04:04:02 +00:00
|
|
|
|
buildInputs = [ perlPackages.LocaleGettext libintl ];
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
|
"--enable-nls"
|
|
|
|
|
];
|
2005-05-18 21:15:29 +00:00
|
|
|
|
|
2023-01-22 21:14:27 +00:00
|
|
|
|
doCheck = false; # target `check' is missing
|
2005-05-18 21:15:29 +00:00
|
|
|
|
|
2023-01-22 21:14:27 +00:00
|
|
|
|
patches = lib.optional stdenv.hostPlatform.isCygwin ./1.40.4-cygwin-nls.patch;
|
2015-05-27 13:20:32 +00:00
|
|
|
|
|
2018-02-19 14:44:47 +00:00
|
|
|
|
# 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
|
2018-12-15 03:50:31 +00:00
|
|
|
|
export PERL5LIB=\''${PERL5LIB:+:}${perlPackages.LocaleGettext}/${perlPackages.perl.libPrefix}
|
2023-01-22 21:14:27 +00:00
|
|
|
|
${lib.optionalString stdenv.hostPlatform.isCygwin ''export PATH=\''${PATH:+:}${gettext}/bin''}
|
2018-02-19 14:44:47 +00:00
|
|
|
|
exec -a \$0 $out/bin/.help2man-wrapped "\$@"
|
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/help2man
|
|
|
|
|
'';
|
2012-01-31 15:50:51 +00:00
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
|
meta = with lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
|
description = "Generate man pages from `--help' output";
|
2023-01-22 21:14:27 +00:00
|
|
|
|
longDescription = ''
|
|
|
|
|
help2man produces simple manual pages from the ‘--help’ and ‘--version’ output of other commands.
|
|
|
|
|
'';
|
2020-03-18 21:43:16 +00:00
|
|
|
|
homepage = "https://www.gnu.org/software/help2man/";
|
2014-08-30 21:59:07 +00:00
|
|
|
|
license = licenses.gpl3Plus;
|
2015-03-09 16:43:14 +00:00
|
|
|
|
platforms = platforms.all;
|
2015-01-13 21:33:24 +00:00
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2012-01-31 15:31:23 +00:00
|
|
|
|
};
|
2005-05-18 21:15:29 +00:00
|
|
|
|
}
|