.dotfiles/pkgs/flake/prstatus/default.nix
2026-03-06 00:51:55 +01:00

8 lines
198 B
Nix

{ name, writeShellApplication, curl, ... }:
writeShellApplication {
inherit name;
runtimeInputs = [ curl ];
text = ''
curl https://nixpkgs.molybdenum.software/api/v2/landings/"$1"
'';
}