Nix/tests/simple-failing.nix
2021-12-07 21:45:09 +01:00

13 lines
202 B
Nix

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