mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
testing expression for perl 5.10, needs more work (different patches)
svn path=/nixpkgs/trunk/; revision=10567
This commit is contained in:
parent
35c38df0af
commit
3ebfd510ba
1 changed files with 21 additions and 0 deletions
21
pkgs/development/interpreters/perl/perl-5.10.nix
Normal file
21
pkgs/development/interpreters/perl/perl-5.10.nix
Normal file
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in a new issue