Files
lix/tests/check.nix
T

13 lines
192 B
Nix

with import ./config.nix;
{
nondeterministic = mkDerivation {
name = "nondeterministic";
buildCommand =
''
mkdir $out
date +%s.%N > $out/date
'';
};
}