mirror of
https://github.com/ryanccn/attic-action.git
synced 2024-11-19 22:16:35 +00:00
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
|
||
|
''
|