2018-12-15 03:50:31 +00:00
|
|
|
|
{ stdenv, fetchurl, perlPackages, gettext }:
|
2005-05-18 22:15:29 +01:00
|
|
|
|
|
2012-01-31 15:31:23 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2020-01-06 12:19:26 +00:00
|
|
|
|
name = "help2man-1.47.12";
|
2005-05-18 22:15:29 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-01 03:26:44 +00:00
|
|
|
|
url = "mirror://gnu/help2man/${name}.tar.xz";
|
2020-01-06 12:19:26 +00:00
|
|
|
|
sha256 = "0q5ixbxz1v7wqnpg4bq7k7nbv9ssnmcvdbqsq5ycjvniz56ac2vx";
|
2005-05-18 22:15:29 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-12-15 03:50:31 +00:00
|
|
|
|
nativeBuildInputs = [ gettext perlPackages.LocaleGettext ];
|
|
|
|
|
buildInputs = [ perlPackages.perl perlPackages.LocaleGettext ];
|
2005-05-18 22:15:29 +01:00
|
|
|
|
|
2012-01-31 15:31:23 +00:00
|
|
|
|
doCheck = false; # target `check' is missing
|
2005-05-18 22:15:29 +01:00
|
|
|
|
|
2018-08-20 19:43:41 +01:00
|
|
|
|
patches = if stdenv.hostPlatform.isCygwin then [ ./1.40.4-cygwin-nls.patch ] else null;
|
2015-05-27 14:20:32 +01: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}
|
2018-08-20 19:43:41 +01:00
|
|
|
|
${stdenv.lib.optionalString stdenv.hostPlatform.isCygwin
|
2018-11-06 15:49:51 +00:00
|
|
|
|
''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
|
|
|
|
|
2014-08-30 22:59:07 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
|
description = "Generate man pages from `--help' output";
|
2012-01-31 15:31:23 +00:00
|
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
|
'' help2man produces simple manual pages from the ‘--help’ and
|
|
|
|
|
‘--version’ output of other commands.
|
|
|
|
|
'';
|
|
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
|
homepage = https://www.gnu.org/software/help2man/;
|
2012-01-31 15:31:23 +00:00
|
|
|
|
|
2014-08-30 22:59:07 +01: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 22:15:29 +01:00
|
|
|
|
}
|