diff --git a/examples/nimble/example.nimble b/examples/nimble/example.nimble index 6d1430e6d..6cd070d5b 100644 --- a/examples/nimble/example.nimble +++ b/examples/nimble/example.nimble @@ -9,22 +9,3 @@ bin = @["example"] # Dependencies - -requires "chronos" - -proc ensureRln(libFile: string = "build/librln.a", version = "v0.7.0") = - if not fileExists(libFile): - echo "Building RLN library..." - let buildDir = getCurrentDir() - let outFile = libFile - exec "bash ../../scripts/build_rln.sh " & buildDir & " " & version & " " & outFile - else: - echo "RLN library already exists: " & libFile - -before build: - echo "Ensure RLN before build" - ensureRln() - -before install: - echo "Ensure RLN before install" - ensureRln()