clan-core/pkgs/merge-after-ci/default.nix
lassulus d947c32a9b
All checks were successful
build / test (push) Successful in 9s
use callPackage for merge-after-ci, nix-unit & tea-create-pr
2023-08-03 18:05:53 +02:00

24 lines
284 B
Nix

{ 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} "$@"
'';
}