aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-08-12 15:57:25 +0200
committerEelco Dolstra <edolstra@gmail.com>2022-08-17 11:31:27 +0200
commit3d4489b623deaceef720da7d884a41452f928db6 (patch)
tree2d7d2ea76a0891eef979146e1cca7e67f258be0f /src
parentaf4e8b00fb986acf32d7e4cd4fff7218b38958df (diff)
Show when we're evaluating a flake
Diffstat (limited to 'src')
-rw-r--r--src/libcmd/installables.cc2
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();