aboutsummaryrefslogtreecommitdiff
path: root/src/nix/store-copy-log.md
blob: 0937250f2b46d31e831c76981eb7e5a40fc3d5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
R""(

# Examples

* To copy the build log of the `hello` package from
  https://cache.nixos.org to the local store:

  ```console
  # nix store copy-log --from https://cache.nixos.org --eval-store auto nixpkgs#hello
  ```

  You can verify that the log is available locally:

  ```console
  # nix log --substituters '' nixpkgs#hello
  ```

  (The flag `--substituters ''` avoids querying
  `https://cache.nixos.org` for the log.)

* To copy the log for a specific [store derivation] via SSH:

  [store derivation]: ../../glossary.md#gloss-store-derivation

  ```console
  # nix store copy-log --to ssh-ng://machine /nix/store/ilgm50plpmcgjhcp33z6n4qbnpqfhxym-glibc-2.33-59.drv
  ```

# Description

`nix store copy-log` copies build logs between two Nix stores. The
source store is specified using `--from` and the destination using
`--to`. If one of these is omitted, it defaults to the local store.

)""