lix/tests/timeout.nix

21 lines
319 B
Nix
Raw Normal View History

with import ./config.nix;
2017-01-19 13:17:57 +00:00
{
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
'';
};
}