nixpkgs/pkgs/stdenv/initial/default.nix
Eelco Dolstra 01a1658c6b * Finally we have a working stdenvLinux again.
On the downside, the build process of stdenvLinux builds gcc 9 times
  (3 x 3 bootstrap stages).  That's a bit excessive.

svn path=/nixpkgs/trunk/; revision=880
2004-03-30 12:46:52 +00:00

32 lines
621 B
Nix

# 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}:
let {
shell = "/bin/sh";
body =
derivation {
inherit system name;
builder = shell;
args = ["-e" ./builder.sh];
}
// {
mkDerivation = attrs: derivation (attrs // {
builder = shell;
args = ["-e" attrs.builder];
stdenv = body;
system = body.system;
});
inherit shell;
};
}