chore: improve shells

This commit is contained in:
Luj 2024-07-12 16:31:09 +02:00
parent f53336f887
commit c783d1123a
Signed by: luj
GPG key ID: 6FC74C847011FD83
3 changed files with 54 additions and 31 deletions

11
scripts/update-deps.nix Normal file
View file

@ -0,0 +1,11 @@
{ writeShellApplication, npins }:
writeShellApplication {
name = "update-deps";
runtimeInputs = [ npins ];
text = ''
npins update -d deps "$@"
'';
}