lix/tests/check.nix

13 lines
192 B
Nix
Raw Normal View History

2018-01-19 12:58:28 +00:00
with import ./config.nix;
{
nondeterministic = mkDerivation {
name = "nondeterministic";
buildCommand =
''
mkdir $out
date +%s.%N > $out/date
'';
};
}