nixpkgs/pkgs/test/simple/default.nix

19 lines
336 B
Nix
Raw Normal View History

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