summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2008-02-10 13:30:12 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2008-02-10 13:30:12 +0000
commit3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8 (patch)
tree6ae965df5b8abf75c28ac831509a576648ef1cec /pkgs
parent35c38df0af924b25419007e9668aecfb474c172b (diff)
downloadnixpkgs-3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8.tar
nixpkgs-3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8.tar.gz
nixpkgs-3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8.tar.bz2
nixpkgs-3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8.tar.lz
nixpkgs-3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8.tar.xz
nixpkgs-3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8.tar.zst
nixpkgs-3ebfd510baf9ad26727fcdd6ba513a2c8e6fe9f8.zip
testing expression for perl 5.10, needs more work (different patches)
svn path=/nixpkgs/trunk/; revision=10567
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/perl/perl-5.10.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/perl/perl-5.10.nix b/pkgs/development/interpreters/perl/perl-5.10.nix
new file mode 100644
index 00000000000..01f314c19a4
--- /dev/null
+++ b/pkgs/development/interpreters/perl/perl-5.10.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "perl-5.10.0";
+
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://www.cpan.org/src/perl-5.10.0.tar.gz;
+    sha256 = "0bivbz15x02m02gqs6hs77cgjr2msfrhnvp5xqk359jg6w6llill";
+  };
+
+  # 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;
+}