* Perl updated to 5.8.5.

svn path=/nixpkgs/trunk/; revision=1450
This commit is contained in:
Eelco Dolstra
2004-09-18 21:11:58 +00:00
parent be49175db4
commit 80ee0edb27
3 changed files with 27 additions and 31 deletions
@@ -1,12 +1,12 @@
{stdenv, fetchurl, patch}:
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "perl-5.8.3";
name = "perl-5.8.5";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.cs.uu.nl/mirror/CPAN/src/5.0/perl-5.8.3.tar.gz;
md5 = "6d2b389f8c6424b7af303f417947714f";
url = ftp://ftp.cs.uu.nl/mirror/CPAN/src/5.0/perl-5.8.5.tar.gz;
md5 = "49baa8d7d29b4a9713c06edeb81e6b1b";
};
# This patch does the following:
@@ -15,8 +15,5 @@ stdenv.mkDerivation {
# !!! what are the security implications of this?
# 2) Force the use of <errno.h>, not /usr/include/errno.h, on Linux
# systems. (This actually appears to be due to a bug in Perl.)
srcPatch = ./patch;
inherit patch;
patches = [./no-sys-dirs.patch];
}