diff options
author | Vincent Ambo <mail@tazj.in> | 2020-07-19T16·59+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-07-19T19·02+0000 |
commit | 324d385b29979dee066a36250cfea9e030f24bfe (patch) | |
tree | 9dcc6f751eed51b825171865f2d7c3526db16b04 /third_party/nix/src/libexpr/get-drvs.cc | |
parent | 02066a4bab3f534569c61f571c25d519a1a569ad (diff) |
refactor(3p/nix): Rename & undeprecate Bindings::lexicographicOrder r/1400
The function is renamed to `SortedByKeys`, which is more descriptive, and annotated with a comment about what it is used for. The deprecation warning has been removed because this function is currently functionally required. Change-Id: I0ee3a76deff05f366feca9ddac8f38ab34bffbd0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1288 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'third_party/nix/src/libexpr/get-drvs.cc')
-rw-r--r-- | third_party/nix/src/libexpr/get-drvs.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/get-drvs.cc b/third_party/nix/src/libexpr/get-drvs.cc index 1d8fe1efa073..02ddae1f886c 100644 --- a/third_party/nix/src/libexpr/get-drvs.cc +++ b/third_party/nix/src/libexpr/get-drvs.cc @@ -387,7 +387,7 @@ static void getDerivations(EvalState& state, Value& vIn, there are names clashes between derivations, the derivation bound to the attribute with the "lower" name should take precedence). */ - for (auto& i : v.attrs->lexicographicOrder()) { + for (auto& i : v.attrs->SortedByKeys()) { DLOG(INFO) << "evaluating attribute '" << i->name << "'"; if (!std::regex_match(std::string(i->name), attrRegex)) { continue; |