Author: eelco
Date: Thu Oct 27 16:09:22 2011
New Revision: 30058
URL: https://nixos.org/websvn/nix/?rev=30058&sc=1

Log:
* Make Perl 5.14 the default.  Cross fingers.

Modified:
   nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix

Modified: nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix     Thu Oct 
27 15:58:25 2011        (r30057)
+++ nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix     Thu Oct 
27 16:09:22 2011        (r30058)
@@ -2563,15 +2563,13 @@
     impureLibcPath = if stdenv.isLinux then null else "/usr";
   };
 
-  perl510 = callPackage ../development/interpreters/perl/5.10 {
-    fetchurl = fetchurlBoot;
-  };
+  perl510 = callPackage ../development/interpreters/perl/5.10 { };
 
   perl514 = callPackage ../development/interpreters/perl/5.14 {
     fetchurl = fetchurlBoot;
   };
 
-  perl = if system != "i686-cygwin" then perl510 else sysPerl;
+  perl = if system != "i686-cygwin" then perl514 else sysPerl;
 
   php = php5_3;
 
_______________________________________________
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to