diff options
author | Greg Hale <imalsogreg@gmail.com> | 2020-06-17 15:08:59 -0400 |
---|---|---|
committer | Greg Hale <imalsogreg@gmail.com> | 2020-09-16 13:46:48 -0400 |
commit | a303c0b6dc71b1e0d6a57986c3f7a9b61361cd92 (patch) | |
tree | 1fe085d5c3d809b69600a4c883fb5ddcbfb09418 /src/libexpr/parser.y | |
parent | 5080d4e7b2525d1656282c65a217a22ff8381df3 (diff) |
Fetch commits from github/gitlab using Auth header
`nix flake info` calls the github 'commits' API, which requires
authorization when the repository is private. Currently this request
fails with a 404.
This commit adds an authorization header when calling the 'commits' API.
It also changes the way that the 'tarball' API authenticates, moving the
user's token from a query parameter into the Authorization header.
The query parameter method is recently deprecated and will be disallowed
in November 2020. Using them today triggers a warning email.
Diffstat (limited to 'src/libexpr/parser.y')
-rw-r--r-- | src/libexpr/parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/parser.y b/src/libexpr/parser.y index 24b21f7da..28e31f46b 100644 --- a/src/libexpr/parser.y +++ b/src/libexpr/parser.y @@ -719,7 +719,7 @@ std::pair<bool, std::string> EvalState::resolveSearchPathElem(const SearchPathEl if (isUri(elem.second)) { try { res = { true, store->toRealPath(fetchers::downloadTarball( - store, resolveUri(elem.second), "source", false).first.storePath) }; + store, resolveUri(elem.second), Headers {}, "source", false).first.storePath) }; } catch (FileTransferError & e) { logWarning({ .name = "Entry download", |