15 lines
218 B
Nix
15 lines
218 B
Nix
|
{ stdenv }:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "stdenv-test-succeedOnFailure";
|
||
|
|
||
|
succeedOnFailure = true;
|
||
|
|
||
|
passAsFile = [ "buildCommand" ];
|
||
|
buildCommand = ''
|
||
|
mkdir $out
|
||
|
echo foo > $out/foo
|
||
|
exit 1
|
||
|
'';
|
||
|
}
|