forked from Mirror/attic-action
5dc7b671af
* feat: add flake devShell * chore: add prettier * fix: respect cache input during configure * feat: auto push paths * feat: add test workflow * chore: update index.js * refactors * pnpm lock * more refactors * remove copying --------- Co-authored-by: Ryan Cao <70191398+ryanccn@users.noreply.github.com>
7 lines
149 B
Nix
7 lines
149 B
Nix
let
|
|
pkgs = import <nixpkgs> { };
|
|
time = with builtins; toString currentTime;
|
|
in
|
|
pkgs.runCommand "${time}-test" { } ''
|
|
echo "${time}" > $out
|
|
''
|