clan-core/pkgs/merge-after-ci/default.nix

24 lines
284 B
Nix
Raw Normal View History

{ writeShellApplication
, coreutils
, bash
, git
, tea
, openssh
, tea-create-pr
, ...
}:
writeShellApplication {
name = "merge-after-ci";
runtimeInputs = [
bash
coreutils
git
tea
openssh
tea-create-pr
];
text = ''
bash ${./script.sh} "$@"
'';
2023-07-28 13:03:06 +00:00
}