mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 23:02:27 +00:00
13 lines
192 B
Nix
13 lines
192 B
Nix
|
with import ./config.nix;
|
||
|
|
||
|
{
|
||
|
nondeterministic = mkDerivation {
|
||
|
name = "nondeterministic";
|
||
|
buildCommand =
|
||
|
''
|
||
|
mkdir $out
|
||
|
date +%s.%N > $out/date
|
||
|
'';
|
||
|
};
|
||
|
}
|