diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-11T22·52-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-11T22·52-0400 |
commit | f2bdc87595376efb2d05a8555b0686922a298929 (patch) | |
tree | 17a708586e04d1c7e44d0966fc827dfc281c3d2e /src/libstore/globals.cc | |
parent | 15c15da482eb30f95f4dab04b582a45edc10815b (diff) |
Update the other substituters
Diffstat (limited to 'src/libstore/globals.cc')
-rw-r--r-- | src/libstore/globals.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index f660ed68df0d..9636bf49d987 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -155,8 +155,8 @@ void setDefaultsFromEnvironment() string subs = getEnv("NIX_SUBSTITUTERS", "default"); if (subs == "default") { - //substituters.push_back(nixLibexecDir + "/nix/substituters/copy-from-other-stores.pl"); - //substituters.push_back(nixLibexecDir + "/nix/substituters/download-using-manifests.pl"); + substituters.push_back(nixLibexecDir + "/nix/substituters/copy-from-other-stores.pl"); + substituters.push_back(nixLibexecDir + "/nix/substituters/download-using-manifests.pl"); substituters.push_back(nixLibexecDir + "/nix/substituters/download-from-binary-cache.pl"); } else substituters = tokenizeString(subs, ":"); |