* Remove redundant files, move path.nix around a bit.

svn path=/nixpkgs/trunk/; revision=5701
This commit is contained in:
Eelco Dolstra 2006-07-14 08:35:59 +00:00
parent 452c3350d8
commit b2f6e204a2
4 changed files with 2 additions and 15 deletions

View File

@ -200,7 +200,7 @@ rec {
name = "stdenv-linux";
preHook = ./prehook.sh;
initialPath = [
((import ../nix/path.nix) {pkgs = stdenvLinuxBoot3Pkgs;})
((import ../common-path.nix) {pkgs = stdenvLinuxBoot3Pkgs;})
stdenvLinuxBoot3Pkgs.patchelf
];

View File

@ -1,13 +0,0 @@
{pkgs}: [
pkgs.coreutils
pkgs.findutils
pkgs.diffutils
pkgs.gnused
pkgs.gnugrep
pkgs.gawk
pkgs.gnutar
pkgs.gzip
pkgs.bzip2
pkgs.gnumake
pkgs.bash
]

View File

@ -3,7 +3,7 @@
genericStdenv {
name = "stdenv-nix";
preHook = ./prehook.sh;
initialPath = (import ./path.nix) {pkgs = pkgs;};
initialPath = (import ../common-path.nix) {pkgs = pkgs;};
inherit stdenv;