summary refs log tree commit diff
path: root/pkgs/stdenv/initial/default.nix
blob: da0771ce7d26302a3cc09ce05b611203ad6eeb29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# 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}:

derivation {
  inherit system name;
  builder = ./builder.sh;
}