01a1658c6b
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
18 lines
309 B
Nix
18 lines
309 B
Nix
let {
|
|
system = "i686-linux";
|
|
|
|
stdenvs = (import ../../system/stdenvs.nix) {
|
|
inherit system;
|
|
allPackages = import ../../system/all-packages-generic.nix;
|
|
};
|
|
|
|
stdenv = stdenvs.stdenvNix;
|
|
|
|
test = stdenv.mkDerivation {
|
|
name = "simple-test";
|
|
builder = ./builder.sh;
|
|
};
|
|
|
|
body = test;
|
|
}
|