Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
nix-store -l: Fetch build logs from the Internet
If a build log is not available locally, then ‘nix-store -l’ will now try to download it from the servers listed in the ‘log-servers’ option in nix.conf. For instance, if you have: log-servers = http://hydra.nixos.org/log then it will try to get logs from http://hydra.nixos.org/log/<base name of the store path>. So you can do things like: $ nix-store -l $(which xterm) and get a log even if xterm wasn't built locally.
- Loading branch information
Showing
with
144 additions
and 93 deletions.
- +1 −0 Makefile.config.in
- +14 −0 doc/manual/conf-file.xml
- +94 −89 doc/manual/nix-store.xml
- +1 −0 src/libstore/globals.cc
- +3 −0 src/libstore/globals.hh
- +1 −1 src/libutil/util.cc
- +2 −0 src/libutil/util.hh
- +2 −0 src/nix-store/local.mk
- +26 −3 src/nix-store/nix-store.cc
Oops, something went wrong.