diff options
author | regnat <rg@regnat.ovh> | 2021-05-12 16:19:51 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-05-12 16:19:51 +0200 |
commit | ec613603ba324bf12f8f554d74fb1a02c6e9b472 (patch) | |
tree | 5fefc7964ba6ebe34ee0b3ad4be053c52434d8b4 /src/nix/build.cc | |
parent | 7f9759b18d786d26574bfaf3fa00f71402615ff8 (diff) |
DerivedPathWithHints -> BuiltPath
Just a renaming for now
Diffstat (limited to 'src/nix/build.cc')
-rw-r--r-- | src/nix/build.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/build.cc b/src/nix/build.cc index 226c551fa..d924fe553 100644 --- a/src/nix/build.cc +++ b/src/nix/build.cc @@ -63,12 +63,12 @@ struct CmdBuild : InstallablesCommand, MixDryRun, MixJSON, MixProfile for (const auto & [_i, buildable] : enumerate(buildables)) { auto i = _i; std::visit(overloaded { - [&](DerivedPathWithHints::Opaque bo) { + [&](BuiltPath::Opaque bo) { std::string symlink = outLink; if (i) symlink += fmt("-%d", i); store2->addPermRoot(bo.path, absPath(symlink)); }, - [&](DerivedPathWithHints::Built bfd) { + [&](BuiltPath::Built bfd) { auto builtOutputs = store->queryDerivationOutputMap(bfd.drvPath); for (auto & output : builtOutputs) { std::string symlink = outLink; |