diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-12 03:03:12 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-07-12 03:03:12 +0000 |
commit | 13ec627e0a46d26b5de227e193a05b51af7f55e5 (patch) | |
tree | 3049792ae4f559200487790a812185c448f979d2 /src/libexpr | |
parent | 1c9bec226f9ff1a9586bfefcd0c3b66ed989b2d3 (diff) |
Set derivation name in dervationStrict
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/primops.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 4367f9b22..14a7deed5 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -591,6 +591,7 @@ static void prim_derivationStrict(EvalState & state, const Pos & pos, Value * * /* Build the derivation expression by processing the attributes. */ Derivation drv; + drv.name = drvName; PathSet context; |