1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
with import ./config.nix; { infiniteLoop = mkDerivation { name = "timeout"; buildCommand = '' echo "‘timeout’ builder entering an infinite loop" while true ; do echo -n .; done ''; }; silent = mkDerivation { name = "silent"; buildCommand = '' sleep 60 ''; }; }