nixpkgs/pkgs/test/simple/default.nix
Eelco Dolstra de13527000 * Finally got stdenv-nix-linux working again. Still not perfect,
though.
* libxml2: upgrade to latest.
* octavefront/rna: keep debug info.

svn path=/nixpkgs/trunk/; revision=830
2004-03-11 17:26:14 +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.stdenvLinuxBoot2;
test = derivation {
name = "simple-test";
inherit system stdenv;
builder = ./builder.sh;
};
body = test;
}