12 lines
293 B
Text
12 lines
293 B
Text
|
# 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"
|
||
|
|
||
|
|