mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-02-19 05:23:08 +00:00
`requires` in the nimble file alone is not sufficient, NBS never calls `nimble install` or clones URLs from the `requires` block at build time. The package must be present as a git submodule for NBS to discover and link it. Migrating to `nimble install` is a separate task.
31 lines
946 B
Plaintext
31 lines
946 B
Plaintext
[submodule "vendor/nimbus-build-system"]
|
|
path = vendor/nimbus-build-system
|
|
url = https://github.com/status-im/nimbus-build-system.git
|
|
[submodule "vendor/nwaku"]
|
|
path = vendor/nwaku
|
|
url = https://github.com/waku-org/nwaku.git
|
|
ignore = untracked
|
|
branch = master
|
|
[submodule "vendor/nim-protobuf-serialization"]
|
|
path = vendor/nim-protobuf-serialization
|
|
url = https://github.com/status-im/nim-protobuf-serialization.git
|
|
ignore = untracked
|
|
branch = master
|
|
[submodule "vendor/npeg"]
|
|
path = vendor/npeg
|
|
url = https://github.com/zevv/npeg.git
|
|
ignore = untracked
|
|
branch = master
|
|
[submodule "vendor/blake2"]
|
|
path = vendor/blake2
|
|
url = https://github.com/narimiran/blake2.git
|
|
ignore = untracked
|
|
branch = master
|
|
[submodule "vendor/libchat"]
|
|
path = vendor/libchat
|
|
url = https://github.com/logos-messaging/libchat.git
|
|
[submodule "vendor/nim-ffi"]
|
|
path = vendor/nim-ffi
|
|
url = https://github.com/logos-messaging/nim-ffi.git
|
|
branch = master
|