Files
clan-core/pkgs/tea-create-pr/default.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} "$@"
'';
}