about summary refs log tree commit diff
path: root/tests/check.nix
blob: b330ab9c984c3a8d153bbb729b3a8722bb3c024b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
with import ./config.nix;

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