nixpkgs/pkgs/test/simple/default.nix
Eelco Dolstra a1b3ae0c81 * stdenv-nix-linux should more-or-less work again now.
svn path=/nixpkgs/trunk/; revision=826
2004-03-09 17:16:02 +00:00

19 lines
341 B
Nix

let {
system = "i686-linux";
stdenvs = (import ../../system/stdenvs.nix) {
system = "i686-linux";
allPackages = import ../../system/all-packages-generic.nix;
};
stdenv = stdenvs.stdenvLinuxBoot1;
test = derivation {
name = "simple-test";
inherit system stdenv;
builder = ./builder.sh;
};
body = test;
}