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

19 lines
236 B
Nix

{ writeShellApplication
, bash
, coreutils
, git
, tea
, openssh
}:
writeShellApplication {
name = "tea-create-pr";
runtimeInputs = [
bash
coreutils
git
tea
openssh
];
text = builtins.readFile ./script.sh;
}