forked from lix-project/lix
13 lines
202 B
Nix
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;
|
|
}
|