* Drop the "perl" prefix from Perl attribute names. It's redundant

now that Perl packages are in their own namespace
  (perlPackages.<pkg>).

svn path=/nixpkgs/trunk/; revision=15176
This commit is contained in:
Eelco Dolstra
2009-04-20 12:49:35 +00:00
parent 2cbc761779
commit c61c9dc35b
12 changed files with 451 additions and 457 deletions
@@ -1,4 +1,4 @@
{stdenv, fetchurl, perl, gettext, perlLocaleGettext}:
{stdenv, fetchurl, perl, gettext, LocaleGettext}:
stdenv.mkDerivation {
name = "help2man-1.35.1";
@@ -11,11 +11,11 @@ stdenv.mkDerivation {
buildInputs = [
perl
gettext
perlLocaleGettext
LocaleGettext
];
# So that configure can find `preloadable_libintl.so'.
LD_LIBRARY_PATH = gettext + "/lib";
LD_LIBRARY_PATH = "${gettext}/lib";
inherit gettext;
}