clan-infra/pkgs/action-create-pr/default.nix

11 lines
176 B
Nix

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