chore: improve shells

This commit is contained in:
Luj 2024-07-12 16:31:09 +02:00
parent 8ad260f7a5
commit dc460ca9cf
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 "$@"
'';
}