clan-core/pkgs/pending-reviews/default.nix

14 lines
183 B
Nix
Raw Normal View History

2024-03-17 18:48:49 +00:00
{
writeShellApplication,
bash,
curl,
2023-11-15 12:48:52 +00:00
}:
writeShellApplication {
name = "pending-reviews";
runtimeInputs = [
bash
curl
];
text = builtins.readFile ./script.sh;
}