aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/simple-failing.nix
blob: d176c9c51e6fd1a226701dc8572799b5bd00c584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with import ./config.nix;

mkDerivation {
  name = "simple-failing";
  builder = builtins.toFile "builder.sh"
    ''
      echo "This should fail"
      exit 1
    '';
  PATH = "";
  goodPath = path;
}