clan-infra/pkgs/action-checkout/default.nix
Jörg Thalheim 15b20d2e9e
All checks were successful
build / test (push) Successful in 7s
move devShells out of flake-parts
2023-08-03 16:18:29 +02:00

10 lines
165 B
Nix

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