mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
11 lines
164 B
Nix
11 lines
164 B
Nix
{ writeShellApplication, npins }:
|
|
|
|
writeShellApplication {
|
|
name = "update-deps";
|
|
|
|
runtimeInputs = [ npins ];
|
|
|
|
text = ''
|
|
npins update -d deps "$@"
|
|
'';
|
|
}
|