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;
}