forked from Mirror/attic-action
8 lines
149 B
Nix
8 lines
149 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> { };
|
||
|
time = with builtins; toString currentTime;
|
||
|
in
|
||
|
pkgs.runCommand "${time}-test" { } ''
|
||
|
echo "${time}" > $out
|
||
|
''
|