.dotfiles/pkgs/flake/prstatus/default.nix
2025-12-12 02:19:58 +01:00

9 lines
199 B
Nix

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