2004-09-18 23:11:58 +02:00
|
|
|
{stdenv, fetchurl}:
|
2004-02-20 17:25:34 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2005-03-10 13:49:37 +01:00
|
|
|
name = "perl-5.8.6";
|
2004-02-20 17:25:34 +01:00
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/perl-5.8.6.tar.bz2;
|
2005-03-10 13:49:37 +01:00
|
|
|
md5 = "3d030b6ff2a433840edb1a407d18dc0a";
|
2004-02-20 17:25:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# 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.)
|
2004-09-18 23:11:58 +02:00
|
|
|
patches = [./no-sys-dirs.patch];
|
2005-03-10 13:49:37 +01:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
2003-11-05 13:17:48 +01:00
|
|
|
}
|