* Added help2man and Locale::gettext. Contributed by olivier <bitmap

AT pan.homelinux.com>.

svn path=/nixpkgs/trunk/; revision=3067
This commit is contained in:
Eelco Dolstra
2005-05-18 21:15:29 +00:00
parent b99065a3d9
commit 2176134a07
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,21 @@
{stdenv, fetchurl, perl, gettext, perlLocaleGettext}:
stdenv.mkDerivation {
name = "help2man-1.35.1";
src = fetchurl {
url = http://ftp.gnu.org/gnu/help2man/help2man-1.35.1.tar.gz;
md5 = "e3c9e846dd163eb7f1d1661e2d0baa07";
};
buildInputs = [
perl
gettext
perlLocaleGettext
];
# So that configure can find `preloadable_libintl.so'.
LD_LIBRARY_PATH = gettext ~ "/lib";
inherit gettext;
}