forked from lix-project/lix
Inline file
This commit is contained in:
parent
8b5088b62f
commit
853ef1304c
|
@ -1,2 +0,0 @@
|
||||||
echo "This should fail"
|
|
||||||
exit 1
|
|
|
@ -2,7 +2,11 @@ with import ./config.nix;
|
||||||
|
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
name = "simple-failing";
|
name = "simple-failing";
|
||||||
builder = ./simple-failing.builder.sh;
|
builder = builtins.toFile "builder.sh"
|
||||||
|
''
|
||||||
|
echo "This should fail"
|
||||||
|
exit 1
|
||||||
|
'';
|
||||||
PATH = "";
|
PATH = "";
|
||||||
goodPath = path;
|
goodPath = path;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue