Files
clan-core/pkgs/pending-reviews/default.nix
2024-03-17 19:48:49 +01:00

14 lines
183 B
Nix

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