Go to file
Michael Bradley, Jr 692fc501a7 refactor: don't unnecessarily add entries to LD_LIBRARY_/PATH when running tests
For example, when static linking is used it's a better test that linking
happened and works as expected if `PCRE_LIB_DIR`, etc. aren't added to
`LD_LIBRARY_/PATH`.
2020-11-19 09:44:45 -06:00
.github/workflows feat: integrate nim-sqlcipher 2020-11-18 13:34:24 -06:00
nim_status refactor: upgrade to waku v2, impl/test minimum viable usage 2020-11-18 14:18:37 -06:00
test test: make the db_smoke test identical to the same test in the nim-sqlcipher repo 2020-11-19 07:54:47 -06:00
vendor refactor: upgrade to waku v2, impl/test minimum viable usage 2020-11-18 14:18:37 -06:00
.gitattributes ci: run tests via GitHub Actions 2020-09-02 15:58:35 -05:00
.gitignore feat: integrate nim-sqlcipher 2020-11-18 13:34:24 -06:00
.gitmodules feat: integrate nim-sqlcipher 2020-11-18 13:34:24 -06:00
LICENSE feat: integrate nim-sqlcipher 2020-11-18 13:34:24 -06:00
Makefile refactor: don't unnecessarily add entries to LD_LIBRARY_/PATH when running tests 2020-11-19 09:44:45 -06:00
README.md feat: integrate nim-sqlcipher 2020-11-18 13:34:24 -06:00
env.sh feat: integrate nim-sqlcipher 2020-11-18 13:34:24 -06:00
nim_status.nim feat: integrate nim-sqlcipher 2020-11-18 13:34:24 -06:00
nim_status.nimble refactor: upgrade to waku v2, impl/test minimum viable usage 2020-11-18 14:18:37 -06:00

README.md

nim-status

License: MIT Stability: experimental Tests (GitHub Actions)

Nim implementation of the Status protocol: https://github.com/status-im/specs

Corresponds roughly to status-go: https://github.com/status-im/status-go which is consumed by status-react: https://github.com/status-im/status-react/

Requirements

  • Go - (used to build status-go)
# Linux
<TODO>

# macOS
brew install go

Installation

git clone https://github.com/status-im/nim-status
cd nim-status
make update
make

For more output use make V=1 ....

Use 4 CPU cores with make -j4 ....

Usage

  • Include build/nim_status.a, build/nim_status.h in your project
  • Before any of the API calls are done, NimMain() needs to be run.

Troubleshooting

If the make command fails due to already installed Homebrew packages, such as:

Error: protobuf 3.11.4 is already installed
To upgrade to 3.11.4_1, run `brew upgrade protobuf`.
make[1]: *** [install-os-dependencies] Error 1
make: *** [vendor/status-go/build/bin/libstatus.a] Error 2

This can be fixed by uninstalling the package e.g. brew uninstall protobuf followed by rerunning make.