clan-core/pkgs/pending-reviews/default.nix
Jörg Thalheim 56f135faed
All checks were successful
checks-impure / test (pull_request) Successful in 1m55s
checks / test (pull_request) Successful in 2m10s
add pending-reviews script
2023-11-15 13:48:52 +01:00

13 lines
178 B
Nix

{ writeShellApplication
, bash
, curl
}:
writeShellApplication {
name = "pending-reviews";
runtimeInputs = [
bash
curl
];
text = builtins.readFile ./script.sh;
}