aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-10 01:57:54 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-10 01:57:54 +0000
commit1b5c24662b670cc1041794197052b4473e4e47f0 (patch)
tree3b3d3b98fc16b2cc5b236ac567f356c543723895 /src/libexpr
parentf7696c66e85008e2b60a579bcdf5ff13c141d0af (diff)
parent581183d4d57d5382e3a375f760f3323ef451f555 (diff)
Merge branch 'small-drv-serialize-cleanup' of github.com:obsidiansystems/nix into single-ca-drv-build
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/primops.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index 11f44fb97..05c571d65 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -858,7 +858,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * *
}
/* Write the resulting term into the Nix store directory. */
- auto drvPath = writeDerivation(state.store, drv, drvName, state.repair);
+ auto drvPath = writeDerivation(state.store, drv, state.repair);
auto drvPathS = state.store->printStorePath(drvPath);
printMsg(lvlChatty, "instantiated '%1%' -> '%2%'", drvName, drvPathS);