13 lines
297 B
Nim
13 lines
297 B
Nim
# begin Nimble config (version 2)
|
|
--noNimblePath
|
|
when withDir(thisDir(), system.fileExists("nimble.paths")):
|
|
include "nimble.paths"
|
|
# end Nimble config
|
|
|
|
task updateLock, "update nix lock.json":
|
|
rmFile "nimble.lock"
|
|
rmDir "nimbledeps/pkgs2"
|
|
exec "nimble lock -l"
|
|
exec "nimble setup -l"
|
|
|
|
|