aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/primops/context.cc
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2020-03-21 11:07:16 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-03-24 20:39:45 +0000
commitbcde5456cc3295061a0726881c3e441444dd6680 (patch)
tree5112b85627bd2faff1bd79a39433bd8c627ee39e /src/libexpr/primops/context.cc
parent0a10854f857e519d1455ff0f0be1f8401c40a11c (diff)
Flip dependency so store-api.hh includes derivations.hh
I think it makes more sense to define the data model (derivations), before the operations (store api).
Diffstat (limited to 'src/libexpr/primops/context.cc')
-rw-r--r--src/libexpr/primops/context.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops/context.cc b/src/libexpr/primops/context.cc
index 94fa0158c..66d8bab1f 100644
--- a/src/libexpr/primops/context.cc
+++ b/src/libexpr/primops/context.cc
@@ -1,6 +1,6 @@
#include "primops.hh"
#include "eval-inline.hh"
-#include "derivations.hh"
+#include "store-api.hh"
namespace nix {