mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
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
|
|
'';
|
|
}
|