about summary refs log tree commit diff
path: root/pkgs/test/simple/default.nix
blob: 39b0416fc9a1a65e9db1153ee7bc28c44748d4e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
}