mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
Merge pull request #12580 from ysndr/fix/fetchers/host-in-locked-url
Add host attribute of github/gitlab flakerefs to URL serialization
This commit is contained in:
commit
d8a7c50495
1 changed files with 3 additions and 0 deletions
|
@ -149,6 +149,9 @@ struct GitArchiveInputScheme : InputScheme
|
||||||
};
|
};
|
||||||
if (auto narHash = input.getNarHash())
|
if (auto narHash = input.getNarHash())
|
||||||
url.query.insert_or_assign("narHash", narHash->to_string(HashFormat::SRI, true));
|
url.query.insert_or_assign("narHash", narHash->to_string(HashFormat::SRI, true));
|
||||||
|
auto host = maybeGetStrAttr(input.attrs, "host");
|
||||||
|
if (host)
|
||||||
|
url.query.insert_or_assign("host", *host);
|
||||||
return url;
|
return url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue