11 lines
293 B
Nim
11 lines
293 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":
|
|
exec "nimble lock -l"
|
|
exec "nix run 'github:daylinmorgan/nnl' -- nimble.lock -o:lock.json"
|
|
|
|
|