Adding Nim to your Project
devbox add nim nimble-unwrapped openssl_1_1, or add the following to your devbox.json
devbox search nim.
Edit this pageDocumentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Nim projects can be run in Devbox by adding Nim and Nimble to your project. For some platforms, Nimble may return an error if OpenSSL is not available, so we recommend including openssl_1_1 in your packages as well.
devbox add nim nimble-unwrapped openssl_1_1, or add the following to your devbox.json
"packages": [
"nim@latest",
"nimble-unwrapped@latest",
"openssl_1_1@latest"
]
devbox search nim.
Edit this pageWas this page helpful?