2025-10-15 11:17:02 +02:00
|
|
|
# Usage
|
|
|
|
|
|
|
|
|
|
## Shell
|
|
|
|
|
|
|
|
|
|
A development shell can be started using:
|
|
|
|
|
```sh
|
|
|
|
|
nix develop
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
2026-02-11 16:32:02 +01:00
|
|
|
To simply build you can use:
|
2025-10-15 11:17:02 +02:00
|
|
|
```sh
|
2026-02-11 16:32:02 +01:00
|
|
|
nix build '.#libsds'
|
2025-10-15 11:17:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
It can be also done without even cloning the repo:
|
|
|
|
|
```sh
|
2026-02-11 16:32:02 +01:00
|
|
|
nix build github:waku-org/nim-sds
|
|
|
|
|
nix build github:waku-org/nim-sds#libsds-ios
|
|
|
|
|
nix build github:waku-org/nim-sds#libsds-android-arm64"
|
2025-10-15 11:17:02 +02:00
|
|
|
```
|
2026-02-11 16:32:02 +01:00
|
|
|
Or as a flake input.
|