GNU help2man 1.40.5.
svn path=/nixpkgs/trunk/; revision=31947
This commit is contained in:
parent
38391383f0
commit
27100c36c4
@ -1,11 +1,11 @@
|
|||||||
{stdenv, fetchurl, perl, gettext, LocaleGettext}:
|
{stdenv, fetchurl, perl, gettext, LocaleGettext}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "help2man-1.36.1";
|
name = "help2man-1.40.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://ftp.gnu.org/gnu/help2man/help2man-1.36.1.tar.gz;
|
url = "mirror://gnu/help2man/${name}.tar.gz";
|
||||||
sha256 = "13w20lfvggzhvzs9dinxbhwdd61svsacfv9d78zfl9lf1syb5i1f";
|
sha256 = "1d1wn9krvf9mp97c224710n1pcfh73p7w7na65zn2a06124rln8k";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -14,8 +14,20 @@ stdenv.mkDerivation {
|
|||||||
LocaleGettext
|
LocaleGettext
|
||||||
];
|
];
|
||||||
|
|
||||||
# So that configure can find `preloadable_libintl.so'.
|
doCheck = false; # target `check' is missing
|
||||||
LD_LIBRARY_PATH = "${gettext}/lib";
|
|
||||||
|
|
||||||
inherit gettext;
|
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 ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user