diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-03-02 13:54:08 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-03-02 19:19:51 +0100 |
commit | 54888b92ded6c242ce4914628553d8b2c9c55d10 (patch) | |
tree | 17d530a11628a99bb61434e62a7547c284b23f1e /src/nix/profile.cc | |
parent | b2da2a22c64a040f3cc83180f636b5fe972c16b1 (diff) |
Move installables-related operations
Diffstat (limited to 'src/nix/profile.cc')
-rw-r--r-- | src/nix/profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/profile.cc b/src/nix/profile.cc index 82507db2c..c1bf62357 100644 --- a/src/nix/profile.cc +++ b/src/nix/profile.cc @@ -252,7 +252,7 @@ struct CmdProfileInstall : InstallablesCommand, MixDefaultProfile manifest.elements.emplace_back(std::move(element)); } else { - auto buildables = build(getEvalStore(), store, Realise::Outputs, {installable}, bmNormal); + auto buildables = Installable::build(getEvalStore(), store, Realise::Outputs, {installable}, bmNormal); for (auto & buildable : buildables) { ProfileElement element; |