clan-infra/pkgs/action-create-pr/default.nix
2023-08-07 10:30:59 +02:00

11 lines
181 B
Nix

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