2004-03-08 17:02:46 +01:00
|
|
|
# Here we construct an absolutely trivial `initial' standard
|
|
|
|
# environment. It's not actually a functional stdenv, since there is
|
|
|
|
# not necessarily a working C compiler. We need this to build
|
|
|
|
# gcc-wrapper et al. for the native stdenv.
|
|
|
|
|
|
|
|
{system, name}:
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
let {
|
|
|
|
|
2005-05-10 11:22:14 +02:00
|
|
|
shell = "/bin/bash";
|
2004-03-30 14:46:52 +02:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
body =
|
|
|
|
|
|
|
|
derivation {
|
|
|
|
inherit system name;
|
2004-03-30 14:46:52 +02:00
|
|
|
builder = shell;
|
2004-03-29 19:23:01 +02:00
|
|
|
args = ["-e" ./builder.sh];
|
|
|
|
}
|
|
|
|
|
|
|
|
// {
|
2006-03-24 17:07:42 +01:00
|
|
|
mkDerivation = attrs: derivation ((removeAttrs attrs ["meta"]) // {
|
2004-03-30 14:46:52 +02:00
|
|
|
builder = shell;
|
2004-03-29 19:23:01 +02:00
|
|
|
args = ["-e" attrs.builder];
|
|
|
|
stdenv = body;
|
|
|
|
system = body.system;
|
|
|
|
});
|
2004-03-30 14:46:52 +02:00
|
|
|
|
|
|
|
inherit shell;
|
2004-03-29 19:23:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|