2017-05-23 14:36:12 +01:00
|
|
|
|
{ stdenv, hostPlatform, fetchurl, perl, gettext, LocaleGettext, makeWrapper }:
|
2005-05-18 22:15:29 +01:00
|
|
|
|
|
2012-01-31 15:31:23 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-21 19:56:14 +00:00
|
|
|
|
name = "help2man-1.47.5";
|
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";
|
2017-11-21 19:56:14 +00:00
|
|
|
|
sha256 = "1cb14kp380jzk1yi4i7x9d8qplc8c5mgcbgycgs9ggpx34jhp9kw";
|
2005-05-18 22:15:29 +01:00
|
|
|
|
};
|
|
|
|
|
|
2017-08-14 21:39:03 +01:00
|
|
|
|
nativeBuildInputs = [ makeWrapper gettext LocaleGettext ];
|
|
|
|
|
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
|
|
|
|
|
2012-01-31 15:50:51 +00:00
|
|
|
|
postInstall =
|
|
|
|
|
'' wrapProgram "$out/bin/help2man" \
|
2017-05-23 14:36:12 +01:00
|
|
|
|
--prefix PERL5LIB : "$(echo ${LocaleGettext}/lib/perl*/site_perl)" \
|
|
|
|
|
${stdenv.lib.optionalString hostPlatform.isCygwin "--prefix PATH : ${gettext}/bin"}
|
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
|
|
|
|
}
|