2012-01-31 16:50:51 +01:00
|
|
|
|
{ stdenv, fetchurl, perl, gettext, LocaleGettext, makeWrapper }:
|
2005-05-18 23:15:29 +02:00
|
|
|
|
|
2012-01-31 16:31:23 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2012-04-09 22:50:45 +02:00
|
|
|
|
name = "help2man-1.40.8";
|
2005-05-18 23:15:29 +02:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-01-31 16:31:23 +01:00
|
|
|
|
url = "mirror://gnu/help2man/${name}.tar.gz";
|
2012-04-09 22:50:45 +02:00
|
|
|
|
sha256 = "0s6phazn8jgvpbsby8kj2m58rj1zjghi1aipvamh8af226ssqfzj";
|
2005-05-18 23:15:29 +02:00
|
|
|
|
};
|
|
|
|
|
|
2012-01-31 16:50:51 +01:00
|
|
|
|
buildInputs = [ makeWrapper perl gettext LocaleGettext ];
|
2005-05-18 23:15:29 +02:00
|
|
|
|
|
2012-01-31 16:31:23 +01:00
|
|
|
|
doCheck = false; # target `check' is missing
|
2005-05-18 23:15:29 +02:00
|
|
|
|
|
2012-01-31 16:50:51 +01:00
|
|
|
|
postInstall =
|
|
|
|
|
'' wrapProgram "$out/bin/help2man" \
|
|
|
|
|
--prefix PERL5LIB : "$(echo ${LocaleGettext}/lib/perl*/site_perl)"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
|
2012-01-31 16:31:23 +01:00
|
|
|
|
meta = {
|
|
|
|
|
description = "GNU help2man generates man pages from `--help' output";
|
|
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
|
'' help2man produces simple manual pages from the ‘--help’ and
|
|
|
|
|
‘--version’ output of other commands.
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/help2man/;
|
|
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
|
};
|
2005-05-18 23:15:29 +02:00
|
|
|
|
}
|