diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-08-17 12:20:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 12:20:19 +0200 |
commit | 84cc7ad77c6faf1cda8f8a10f7c12a939b61fe35 (patch) | |
tree | 15f7be76e716d0039e7b24be572035d6fcfcc423 /src/libcmd/installables.cc | |
parent | af4e8b00fb986acf32d7e4cd4fff7218b38958df (diff) | |
parent | 81e42e0d3f0345c28f3d19841c89c4b1975c37a7 (diff) |
Merge pull request #6913 from edolstra/lazy-trees-cherrypicks
lazy-trees cherrypicks
Diffstat (limited to 'src/libcmd/installables.cc')
-rw-r--r-- | src/libcmd/installables.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcmd/installables.cc b/src/libcmd/installables.cc index 59162c4df..e097f23b3 100644 --- a/src/libcmd/installables.cc +++ b/src/libcmd/installables.cc @@ -616,6 +616,8 @@ InstallableFlake::InstallableFlake( std::tuple<std::string, FlakeRef, InstallableValue::DerivationInfo> InstallableFlake::toDerivation() { + Activity act(*logger, lvlTalkative, actUnknown, fmt("evaluating derivation '%s'", what())); + auto attr = getCursor(*state); auto attrPath = attr->getAttrPathStr(); |