feat[client]: add prstatus

This commit is contained in:
Leon Schwarzäugl 2025-12-12 02:19:58 +01:00 committed by Leon Schwarzäugl
parent 52cc78a848
commit 613cfb6c7c
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"
'';
}