mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
feat[client]: add prstatus
This commit is contained in:
parent
52cc78a848
commit
613cfb6c7c
3 changed files with 28 additions and 0 deletions
|
|
@ -15674,6 +15674,7 @@ This is just a separate container for derivations defined in [[#h:64a5cc16-6b16-
|
|||
sshrm
|
||||
endme
|
||||
git-replace
|
||||
prstatus
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -22502,6 +22503,23 @@ This script allows for quick git branch switching.
|
|||
|
||||
#+end_src
|
||||
|
||||
**** prstatus
|
||||
|
||||
This script allows for quick checking of nixpkgs PR statuses.
|
||||
|
||||
#+begin_src nix-ts :tangle pkgs/flake/prstatus/default.nix
|
||||
{ name, writeShellApplication, curl, ... }:
|
||||
|
||||
writeShellApplication {
|
||||
inherit name;
|
||||
runtimeInputs = [ curl ];
|
||||
text = ''
|
||||
curl https://nixpkgs.molybdenum.software/api/v2/landings/"$1"
|
||||
'';
|
||||
}
|
||||
|
||||
#+end_src
|
||||
|
||||
**** bak
|
||||
:PROPERTIES:
|
||||
:CUSTOM_ID: h:03b1b77b-3ca8-4a8f-8e28-9f29004d96d3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue