aboutsummaryrefslogtreecommitdiff
path: root/doc/manual
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-07-31 16:07:04 +0200
committerEelco Dolstra <edolstra@gmail.com>2020-07-31 16:07:04 +0200
commitbf290c2306d8554b82a9f1d30279b90bf8606fa6 (patch)
tree5be2c7b87bc54fac4d330cd82c156b3e6d4b450f /doc/manual
parent2ae9ac23698276c3e045d9b21f5c6ffb40f38324 (diff)
parent0604cfd0ebedcbc0354b783ffb77b95399b9aec3 (diff)
Merge remote-tracking branch 'origin/master' into markdown
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/src/command-ref/conf-file.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/doc/manual/src/command-ref/conf-file.md b/doc/manual/src/command-ref/conf-file.md
index 028b15c9f..ee8803e19 100644
--- a/doc/manual/src/command-ref/conf-file.md
+++ b/doc/manual/src/command-ref/conf-file.md
@@ -206,26 +206,6 @@ The following settings are currently available:
robustness in case of system crashes, but reduces performance. The
default is `true`.
- - `hashed-mirrors`
- A list of web servers used by `builtins.fetchurl` to obtain files by
- hash. The default is `http://tarballs.nixos.org/`. Given a hash type
- *ht* and a base-16 hash *h*, Nix will try to download the file from
- `hashed-mirror/ht/h`. This allows files to be downloaded even if
- they have disappeared from their original URI. For example, given
- the default mirror `http://tarballs.nixos.org/`, when building the
- derivation
-
- ```nix
- builtins.fetchurl {
- url = "https://example.org/foo-1.2.3.tar.xz";
- sha256 = "2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae";
- }
- ```
-
- Nix will attempt to download this file from
- `http://tarballs.nixos.org/sha256/2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae`
- first. If it is not available there, if will try the original URI.
-
- `http-connections`
The maximum number of parallel TCP connections used to fetch files
from binary caches and by other downloads. It defaults to 25. 0