clan-infra/pkgs/action-checkout/default.nix

10 lines
165 B
Nix
Raw Normal View History

2023-08-03 14:13:22 +00:00
{ bash
, coreutils
, git
, openssh
, writePureShellScriptBin
}:
writePureShellScriptBin "action-checkout" [ bash coreutils git openssh ] ''
bash ${./script.sh}
''