Author: simons
Date: Wed Feb  2 11:16:36 2011
New Revision: 25750
URL: https://svn.nixos.org/websvn/nix/?rev=25750&sc=1

Log:
pkgs/top-level/all-packages.nix: dropped lowPrio wrapper around python3

Python 3.x was originally marked as 'low priority' to prevent unintended
updates from version 2 to 3. Meanwhile, the python3 expression has been
renamed to use a different package name, so these kind of accidental updates
can no longer happen.

Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Wed Feb  2 11:16:31 
2011        (r25749)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Wed Feb  2 11:16:36 
2011        (r25750)
@@ -2338,11 +2338,11 @@
     inherit (pkgs.xlibs) libX11 xproto;
   });
 
-  python3 = lowPrio (makeOverridable (import 
../development/interpreters/python/3.1) {
+  python3 = makeOverridable (import ../development/interpreters/python/3.1) {
     inherit (pkgs) fetchurl stdenv zlib bzip2 gdbm;
     arch = if stdenv.isDarwin then pkgs.darwinArchUtility else null;
     sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null;
-  });
+  };
 
   pyrex = pyrex095;
 
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to