21 lines
243 B
Nix
21 lines
243 B
Nix
{ writeShellApplication
|
|
, bash
|
|
, coreutils
|
|
, git
|
|
, tea
|
|
, openssh
|
|
}:
|
|
writeShellApplication {
|
|
name = "tea-create-pr";
|
|
runtimeInputs = [
|
|
bash
|
|
coreutils
|
|
git
|
|
tea
|
|
openssh
|
|
];
|
|
text = ''
|
|
bash ${./script.sh} "$@"
|
|
'';
|
|
}
|