mirror of
https://github.com/NixOS/nix
synced 2025-06-24 13:51:16 +02:00
14 lines
267 B
Nix
14 lines
267 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 ]]
|
|
'';
|
|
}
|