2020-12-09 19:06:19 +00:00
|
|
|
R""(
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
* To get a NAR containing the GNU Hello package:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix store dump-path nixpkgs#hello > hello.nar
|
|
|
|
```
|
|
|
|
|
|
|
|
* To get a NAR from the binary cache https://cache.nixos.org/:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix store dump-path --store https://cache.nixos.org/ \
|
|
|
|
/nix/store/7crrmih8c52r8fbnqb933dxrsp44md93-glibc-2.25 > glibc.nar
|
|
|
|
```
|
|
|
|
|
|
|
|
# Description
|
|
|
|
|
|
|
|
This command generates a NAR file containing the serialisation of the
|
2022-12-01 00:57:02 +00:00
|
|
|
store path [*installable*](./nix.md#installables). The NAR is written to standard output.
|
2020-12-09 19:06:19 +00:00
|
|
|
|
|
|
|
)""
|