2004-09-18 22:11:58 +01:00
|
|
|
{stdenv, fetchurl}:
|
2004-02-20 16:25:34 +00:00
|
|
|
|
2004-03-29 18:23:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2007-05-24 15:41:18 +01:00
|
|
|
name = "perl-5.8.8";
|
2004-02-20 16:25:34 +00:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2008-02-21 15:52:31 +00:00
|
|
|
url = mirror://cpan/src/perl-5.8.8.tar.bz2;
|
2007-05-24 15:41:18 +01:00
|
|
|
sha256 = "1j8vzc6lva49mwdxkzhvm78dkxyprqs4n4057amqvsh4kh6i92l1";
|
2004-02-20 16:25:34 +00:00
|
|
|
};
|
|
|
|
|
2007-11-15 16:15:15 +00:00
|
|
|
patches = [
|
|
|
|
# This patch does the following:
|
|
|
|
# 1) Do use the PATH environment variable to find the `pwd' command.
|
|
|
|
# By default, Perl will only look for it in /lib and /usr/lib.
|
|
|
|
# !!! 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.)
|
|
|
|
./no-sys-dirs.patch
|
|
|
|
|
|
|
|
# Patch to make Perl 5.8.8 build with GCC 4.2. Taken from
|
|
|
|
# http://www.nntp.perl.org/group/perl.perl5.porters/2006/11/msg117738.html
|
|
|
|
./gcc-4.2.patch
|
|
|
|
];
|
2005-03-10 12:49:37 +00:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
2003-11-05 12:17:48 +00:00
|
|
|
}
|