2021-12-21 16:47:27 +00:00
|
|
|
#!/usr/bin/env bash
|
2022-04-14 14:44:25 +00:00
|
|
|
|
|
|
|
export IN_STATUS_NIM_WORKSPACE=1
|
|
|
|
|
2021-12-21 16:47:27 +00:00
|
|
|
export NIM_REPO="https://github.com/status-im/Nim"
|
|
|
|
export NIMBLE_REPO="https://github.com/nim-lang/nimble"
|
|
|
|
|
|
|
|
if [[ -z "${NIM_COMMIT}" ]]; then
|
2022-04-14 14:44:25 +00:00
|
|
|
export NIM_COMMIT="d38177b11f628d9675809bfa85356c3ee3a26fea" # latest v1.6.x (2021-04-14)
|
2021-12-21 16:47:27 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "${NIMBLE_COMMIT}" ]]; then
|
2022-04-14 14:44:25 +00:00
|
|
|
export NIMBLE_COMMIT="d68b2cb6efe8ce298cb5021fe84d3814d755322f" # latest (2021-04-14)
|
2021-12-21 16:47:27 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
source ./scripts/rebuild-nim
|
|
|
|
|
|
|
|
export PATH="$(pwd)/${NIM_DIR}/bin:$(pwd)/scripts:${PATH}"
|