2012-01-31 15:50:51 +00:00
|
|
|
|
{ stdenv, fetchurl, perl, gettext, LocaleGettext, makeWrapper }:
|
2005-05-18 22:15:29 +01:00
|
|
|
|
|
2012-01-31 15:31:23 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-15 11:56:08 +01:00
|
|
|
|
name = "help2man-1.47.4";
|
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";
|
2016-10-03 17:31:54 +01:00
|
|
|
|
sha256 = "0lvp4306f5nq08f3snffs5pp1zwv8l35z6f5g0dds51zs6bzdv6l";
|
2005-05-18 22:15:29 +01:00
|
|
|
|
};
|
|
|
|
|
|
2012-01-31 15:50:51 +00:00
|
|
|
|
buildInputs = [ makeWrapper perl gettext 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
|
|
|
|
|
2015-05-27 14:20:32 +01:00
|
|
|
|
patches = if stdenv.isCygwin then [ ./1.40.4-cygwin-nls.patch ] else null;
|
|
|
|
|
|
2012-01-31 15:50:51 +00:00
|
|
|
|
postInstall =
|
|
|
|
|
'' wrapProgram "$out/bin/help2man" \
|
|
|
|
|
--prefix PERL5LIB : "$(echo ${LocaleGettext}/lib/perl*/site_perl)"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|