3
0
Fork 0
forked from mirrors/nixpkgs

* "Fix" Perl on Cygwin.

svn path=/nixpkgs/trunk/; revision=18129
This commit is contained in:
Eelco Dolstra 2009-11-05 09:11:25 +00:00
parent f08bc4c561
commit d9f65496d4

View file

@ -2370,12 +2370,14 @@ let
impureLibcPath = if stdenv.isLinux then null else "/usr";
};
perl = import ../development/interpreters/perl-5.10 {
perl510 = import ../development/interpreters/perl-5.10 {
inherit stdenv;
fetchurl = fetchurlBoot;
impureLibcPath = if stdenv.isLinux then null else "/usr";
};
perl = if system != "i686-cygwin" then perl510 else sysPerl;
# FIXME: unixODBC needs patching on Darwin (see darwinports)
phpOld = import ../development/interpreters/php {
inherit stdenv fetchurl flex bison libxml2 apacheHttpd;