From 0891c5573008e46116d47d7773091249500dbdcf Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Wed, 28 Jun 2006 22:31:32 +0000 Subject: [PATCH] add new version of help2man, with variability (no upgrade to the latest and greatest) svn path=/nixpkgs/trunk/; revision=5533 --- .../tools/misc/help2man/help2man-1.36.4.nix | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/development/tools/misc/help2man/help2man-1.36.4.nix diff --git a/pkgs/development/tools/misc/help2man/help2man-1.36.4.nix b/pkgs/development/tools/misc/help2man/help2man-1.36.4.nix new file mode 100644 index 00000000000..9fc982189a1 --- /dev/null +++ b/pkgs/development/tools/misc/help2man/help2man-1.36.4.nix @@ -0,0 +1,21 @@ +{stdenv, fetchurl, perl, gettext, perlLocaleGettext}: + +stdenv.mkDerivation { + name = "help2man-1.36.4"; + + src = fetchurl { + url = ftp://ftp.nluug.nl/pub/gnu/help2man/help2man-1.36.4.tar.gz; + md5 = "d31a0a38c2ec71faa06723f6b8bd3076"; + }; + + buildInputs = [ + perl + gettext + perlLocaleGettext + ]; + + # So that configure can find `preloadable_libintl.so'. + LD_LIBRARY_PATH = gettext ~ "/lib"; + + inherit gettext; +}