mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
f29e7867a9
This reverts commitaeffdeffc8
, reversing changes made to723fdeb4f1
.
16 lines
268 B
Nix
16 lines
268 B
Nix
# A derivation that would certainly fail if several builders tried to
|
|
# build it at once.
|
|
|
|
|
|
with import ./config.nix;
|
|
|
|
mkDerivation {
|
|
name = "simple";
|
|
buildCommand = ''
|
|
mkdir $out
|
|
echo bar >> $out/foo
|
|
sleep 3
|
|
[[ "$(cat $out/foo)" == bar ]]
|
|
'';
|
|
}
|