modified README.md +10 -2
| @@ -155,11 +155,19 @@ you run. |
| 155 | 155 | |
| 156 | 156 | ## Install |
| 157 | 157 | |
| 158 | +Grab the static binary from the [latest release](https://rickub.com/nandi/nimstatic/releases): |
| 159 | + |
| 158 | 160 | ```bash |
| 159 | | -nimble install |
| 161 | +curl -sSfLO https://rickub.com/nandi/nimstatic/releases/download/v0.1.5/nimstatic-0.1.5-x86_64-linux |
| 162 | +chmod +x nimstatic-0.1.5-x86_64-linux |
| 160 | 163 | ``` |
| 161 | 164 | |
| 162 | | -or build in place with `nim c -d:ssl -o:nimstatic src/nimstatic.nim`. |
| 165 | +Each release attaches the binary, an `.xz` of it, and `SHA256SUMS`; CI builds |
| 166 | +them on a `v*` tag, and nimstatic builds itself, so the artifact doubles as |
| 167 | +proof the tool works on a clean machine. To pin it in a project, use the |
| 168 | +DotSlash file in the release notes. |
| 169 | + |
| 170 | +Or from source: `nimble install`, or `nim c -d:ssl -o:nimstatic src/nimstatic.nim`. |
| 163 | 171 | |
| 164 | 172 | ## Tests |
| 165 | 173 | |
| @@ -155,11 +155,19 @@ you run. |
| 155 | | 155 | |
| 156 | ## Install | 156 | ## Install |
| 157 | | 157 | |
| | 158 | +Grab the static binary from the [latest release](https://rickub.com/nandi/nimstatic/releases): |
| | 159 | + |
| 158 | ```bash | 160 | ```bash |
| 159 | -nimble install | 161 | +curl -sSfLO https://rickub.com/nandi/nimstatic/releases/download/v0.1.5/nimstatic-0.1.5-x86_64-linux |
| | 162 | +chmod +x nimstatic-0.1.5-x86_64-linux |
| 160 | ``` | 163 | ``` |
| 161 | | 164 | |
| 162 | -or build in place with `nim c -d:ssl -o:nimstatic src/nimstatic.nim`. | 165 | +Each release attaches the binary, an `.xz` of it, and `SHA256SUMS`; CI builds |
| | 166 | +them on a `v*` tag, and nimstatic builds itself, so the artifact doubles as |
| | 167 | +proof the tool works on a clean machine. To pin it in a project, use the |
| | 168 | +DotSlash file in the release notes. |
| | 169 | + |
| | 170 | +Or from source: `nimble install`, or `nim c -d:ssl -o:nimstatic src/nimstatic.nim`. |
| 163 | | 171 | |
| 164 | ## Tests | 172 | ## Tests |
| 165 | | 173 | |