aboutsummaryrefslogtreecommitdiff
path: root/src/nix-env/nix-env.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-04-16 13:44:02 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-04-16 13:44:02 +0000
commit02c1dac90934e1b833c4d6bd9280bda27c146d80 (patch)
treee84f70d93fd75d162099275d3facd6ec9037844c /src/nix-env/nix-env.cc
parent04c4bd3624b094043ff0f2410c1e376a51f457f7 (diff)
* In an nested `with' where the inner with is a variable (`with ...;
with someVar; ...'), the contents of the variable would be clobbered. (The attributes in the outer `with' were added to the variable.)
Diffstat (limited to 'src/nix-env/nix-env.cc')
-rw-r--r--src/nix-env/nix-env.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc
index d44517ba6..f9f828fe9 100644
--- a/src/nix-env/nix-env.cc
+++ b/src/nix-env/nix-env.cc
@@ -1089,6 +1089,7 @@ static void opQuery(Globals & globals,
foreach (vector<DrvInfo>::iterator, i, elems2) {
try {
+ startNest(nest, lvlDebug, format("outputting query result `%1%'") % i->attrPath);
/* For table output. */
Strings columns;