mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 09:43:30 +01:00
This commit introduces a `withExtensions` function, to allow for downloading and using the other installable parts of nrfutil. It also introduces support for aarch64-linux, as well as updating the program.
14 lines
273 B
Markdown
14 lines
273 B
Markdown
# nrfutil {#sec-nrfutil}
|
|
|
|
nrfutil can be built with its installables as following:
|
|
|
|
```nix
|
|
(nrfutil.withExtensions [
|
|
"nrfutil-completion"
|
|
"nrfutil-device"
|
|
"nrfutil-trace"
|
|
])
|
|
```
|
|
|
|
Keep in mind that all installables might not be available for every supported platform.
|