1
0
forked from clan/clan-core
clan-core/pkgs/pending-reviews/default.nix

14 lines
183 B
Nix

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