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

19 lines
236 B
Nix
Raw Normal View History

{ 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
}