forked from mirrors/nixpkgs
MinGW stdenv needs replace
svn path=/nixpkgs/trunk/; revision=12130
This commit is contained in:
parent
fdb399ead1
commit
7d56212df2
|
@ -77,7 +77,7 @@ let {
|
|||
* binutils is on the path because it contains dlltool, which
|
||||
* is invoked on the PATH by some packages.
|
||||
*/
|
||||
initialPath = [make binutils gccCore gccCpp mingwRuntimeSrc w32apiSrc msys];
|
||||
initialPath = [make binutils gccCore gccCpp mingwRuntimeSrc w32apiSrc replace msys];
|
||||
gcc = gccCore;
|
||||
shell = msysShell;
|
||||
inherit curl;
|
||||
|
@ -223,4 +223,10 @@ let {
|
|||
stdenv = stdenvInit3;
|
||||
inherit fetchurl;
|
||||
};
|
||||
|
||||
replace =
|
||||
(import ./pkgs).replace {
|
||||
stdenv = stdenvInit3;
|
||||
inherit fetchurl;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -135,6 +135,11 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
replace = {stdenv, fetchurl} :
|
||||
import ../../../tools/text/replace {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
/*
|
||||
pkgs.coreutils
|
||||
pkgs.findutils
|
||||
|
|
Loading…
Reference in a new issue