* Allow the user to install stdenv (nix-env -i stdenv) and get all the

packages in the stdenv as propagated user environment packages.

svn path=/nixpkgs/branches/stdenv-updates/; revision=15300
This commit is contained in:
Eelco Dolstra
2009-04-25 14:08:29 +00:00
parent 5175cce9a9
commit 671d53dd35
4 changed files with 20 additions and 9 deletions
+2 -3
View File
@@ -205,10 +205,9 @@ rec {
preHook = builtins.toFile "prehook.sh" commonPreHook;
initialPath = [
initialPath =
((import ../common-path.nix) {pkgs = stdenvLinuxBoot3Pkgs;})
stdenvLinuxBoot3Pkgs.patchelf
];
++ [stdenvLinuxBoot3Pkgs.patchelf];
gcc = wrapGCC rec {
inherit (stdenvLinuxBoot2Pkgs) binutils;