* Don't repeat the standard definition of $phases.

svn path=/nixpkgs/trunk/; revision=13493
This commit is contained in:
Eelco Dolstra
2008-11-28 16:12:50 +00:00
parent 8bcfad7e9c
commit e056ebd34e
2 changed files with 7 additions and 4 deletions
+4 -2
View File
@@ -4,8 +4,10 @@ with pkgs;
rec {
makeSourceTarball = args: import ./make-source-tarball.nix
({inherit stdenv autoconf automake libtool;} // args);
makeSourceTarball = args: import ./make-source-tarball.nix (
{ inherit autoconf automake libtool;
stdenv = stdenvNew;
} // args);
nixBuild = args: import ./nix-build.nix (
{ inherit stdenv;