feat[client]: add prstatus

This commit is contained in:
Leon Schwarzäugl 2025-12-12 02:19:58 +01:00
parent 9f9f764899
commit e65c63b6da
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 28 additions and 0 deletions

View file

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