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

13 lines
178 B
Nix

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