diff options
author | Alexander Schmolck <a.schmolck+git@gmail.com> | 2023-04-30 14:55:08 +0100 |
---|---|---|
committer | Alexander Schmolck <a.schmolck+git@gmail.com> | 2023-05-17 08:10:30 +0100 |
commit | afd9bd787dddc4e0d3e370f1b043e442ce1a9dbc (patch) | |
tree | f81c2a0a684e8fa14b4263c821df9e176dd5f1ba /src/nix/nix.md | |
parent | 8d4b6766e297314f69ee96b6c9d74c6c2637f84b (diff) |
Also use long options in src/nix/*.md
Diffstat (limited to 'src/nix/nix.md')
-rw-r--r-- | src/nix/nix.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/nix.md b/src/nix/nix.md index 1ef6c7fcd..8a850ae83 100644 --- a/src/nix/nix.md +++ b/src/nix/nix.md @@ -197,7 +197,7 @@ operate are determined as follows: of all outputs of the `glibc` package in the binary cache: ```console - # nix path-info -S --eval-store auto --store https://cache.nixos.org 'nixpkgs#glibc^*' + # nix path-info --closure-size --eval-store auto --store https://cache.nixos.org 'nixpkgs#glibc^*' /nix/store/g02b1lpbddhymmcjb923kf0l7s9nww58-glibc-2.33-123 33208200 /nix/store/851dp95qqiisjifi639r0zzg5l465ny4-glibc-2.33-123-bin 36142896 /nix/store/kdgs3q6r7xdff1p7a9hnjr43xw2404z7-glibc-2.33-123-debug 155787312 @@ -208,7 +208,7 @@ operate are determined as follows: and likewise, using a store path to a "drv" file to specify the derivation: ```console - # nix path-info -S '/nix/store/gzaflydcr6sb3567hap9q6srzx8ggdgg-glibc-2.33-78.drv^*' + # nix path-info --closure-size '/nix/store/gzaflydcr6sb3567hap9q6srzx8ggdgg-glibc-2.33-78.drv^*' … ``` * If you didn't specify the desired outputs, but the derivation has an |