blob: 555a1548464e4195182d4b7d6299bbcd4dfd1ee1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 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 ]]
'';
}
|