clan-core/pkgs/tea-create-pr/default.nix

20 lines
244 B
Nix
Raw Normal View History

2024-03-17 18:48:49 +00:00
{
writeShellApplication,
bash,
coreutils,
git,
tea,
openssh,
}:
writeShellApplication {
name = "tea-create-pr";
runtimeInputs = [
bash
coreutils
git
tea
openssh
];
2023-08-25 10:52:56 +00:00
text = builtins.readFile ./script.sh;
2023-07-28 12:11:19 +00:00
}