Author: eelco
Date: Tue Feb 21 14:13:16 2012
New Revision: 32456
URL: https://nixos.org/websvn/nix/?rev=32456&sc=1

Log:
* It's important to inherit packages from "pkgs" rather than
  the lexical scope for package overrides to work properly.

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     Tue Feb 
21 14:04:51 2012        (r32455)
+++ nixpkgs/branches/stdenv-updates/pkgs/top-level/all-packages.nix     Tue Feb 
21 14:13:16 2012        (r32456)
@@ -241,7 +241,7 @@
   };
 
   buildEnv = import ../build-support/buildenv {
-    inherit runCommand perl;
+    inherit (pkgs) runCommand perl;
   };
 
   dotnetenv = import ../build-support/dotnetenv {
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to