diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-21T15·19+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-21T15·19+0200 |
commit | 9f9080e2c019f188ba679a7a89284d7eaf629710 (patch) | |
tree | dac5d9672e2b4c139c2e97d7766911b62f8b069b /Makefile.config.in | |
parent | eac5841970737b799c55ec78f6ace6d80762ff04 (diff) |
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.
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 09374833221c..53bdbbf61072 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -10,6 +10,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ bash = @bash@ bindir = @bindir@ bsddiff_compat_include = @bsddiff_compat_include@ +curl = @curl@ datadir = @datadir@ datarootdir = @datarootdir@ dblatex = @dblatex@ |