aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-11-06 14:20:16 +0100
committerEelco Dolstra <edolstra@gmail.com>2019-11-06 14:20:16 +0100
commite491efe9fb010a66f17d0bbc53afd02870198070 (patch)
tree2363bcd3e3fde3b5f4ee8bbe1ed387706e8b13a7 /src
parentd5f1cc3e949ebb8c69b6c0d202302b12839b9bd5 (diff)
Use more stable registry URL
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/eval.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh
index 50c6f784e..5469a8ab2 100644
--- a/src/libexpr/eval.hh
+++ b/src/libexpr/eval.hh
@@ -383,7 +383,7 @@ struct EvalSettings : Config
Setting<bool> traceFunctionCalls{this, false, "trace-function-calls",
"Emit log messages for each function entry and exit at the 'vomit' log level (-vvvv)."};
- Setting<std::string> flakeRegistry{this, "https://raw.githubusercontent.com/NixOS/flake-registry/master/flake-registry.json", "flake-registry",
+ Setting<std::string> flakeRegistry{this, "https://github.com/NixOS/flake-registry/raw/master/flake-registry.json", "flake-registry",
"Path or URI of the global flake registry."};
Setting<bool> allowDirty{this, true, "allow-dirty",