* Added help2man and Locale::gettext. Contributed by olivier <bitmap
AT pan.homelinux.com>. svn path=/nixpkgs/trunk/; revision=3067
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user