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

10 lines
165 B
Nix

{ bash
, coreutils
, git
, openssh
, writePureShellScriptBin
}:
writePureShellScriptBin "action-checkout" [ bash coreutils git openssh ] ''
bash ${./script.sh}
''