2018-02-19 14:44:47 +00:00
|
|
|
|
{ stdenv, hostPlatform, fetchurl, perl, gettext, LocaleGettext }:
|
2005-05-18 22:15:29 +01:00
|
|
|
|
|
2012-01-31 15:31:23 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-22 07:48:13 +00:00
|
|
|
|
name = "help2man-1.47.6";
|
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";
|
2018-03-22 07:48:13 +00:00
|
|
|
|
sha256 = "0vz4dlrvy4vc6l7w0a7n668pfa0rdm73wr2gar58wqranyah46yr";
|
2005-05-18 22:15:29 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-02-19 14:44:47 +00:00
|
|
|
|
nativeBuildInputs = [ gettext LocaleGettext ];
|
2017-08-14 21:39:03 +01:00
|
|
|
|
buildInputs = [ perl 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
|
|
|
|
|
2017-05-23 14:36:12 +01:00
|
|
|
|
patches = if 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 = ''
|
|
|
|
|
gettext_perl="$(echo ${LocaleGettext}/lib/perl*/site_perl)"
|
|
|
|
|
mv $out/bin/help2man $out/bin/.help2man-wrapped
|
|
|
|
|
cat > $out/bin/help2man <<EOF
|
|
|
|
|
#! $SHELL -e
|
|
|
|
|
export PERL5LIB=\''${PERL5LIB:+:}$gettext_perl
|
|
|
|
|
${stdenv.lib.optionalString hostPlatform.isCygwin
|
|
|
|
|
"export PATH=\''${PATH:+:}${gettext}/bin"}
|
|
|
|
|
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.
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/help2man/;
|
|
|
|
|
|
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
|
|
|
|
}
|