summary refs log tree commit diff
path: root/pkgs/development/interpreters/perl/default.nix
blob: 90e717de513f47b4671308005497e887d29d9c65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "perl-5.8.6";

  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/perl-5.8.6.tar.bz2;
    md5 = "3d030b6ff2a433840edb1a407d18dc0a";
  };

  # 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.)
  patches = [./no-sys-dirs.patch];

  setupHook = ./setup-hook.sh;
}