|
| 1 | +#include <nlohmann/json.hpp> |
| 2 | +#include <assert.h> |
| 3 | +#include <stdint.h> |
| 4 | +#include <boost/container/detail/std_fwd.hpp> |
| 5 | +#include <boost/core/pointer_traits.hpp> |
| 6 | +#include <boost/unordered/detail/foa/table.hpp> |
| 7 | +#include <algorithm> |
| 8 | +#include <filesystem> |
| 9 | +#include <functional> |
| 10 | +#include <map> |
| 11 | +#include <memory> |
| 12 | +#include <optional> |
| 13 | +#include <set> |
| 14 | +#include <span> |
| 15 | +#include <string> |
| 16 | +#include <tuple> |
| 17 | +#include <utility> |
| 18 | +#include <variant> |
| 19 | +#include <vector> |
| 20 | +#include <format> |
| 21 | + |
1 | 22 | #include "nix/util/terminal.hh" |
2 | 23 | #include "nix/util/ref.hh" |
3 | 24 | #include "nix/util/environment-variables.hh" |
|
6 | 27 | #include "nix/expr/eval-cache.hh" |
7 | 28 | #include "nix/expr/eval-settings.hh" |
8 | 29 | #include "nix/flake/lockfile.hh" |
9 | | -#include "nix/expr/primops.hh" |
10 | 30 | #include "nix/expr/eval-inline.hh" |
11 | 31 | #include "nix/store/store-api.hh" |
12 | 32 | #include "nix/fetchers/fetchers.hh" |
13 | 33 | #include "nix/util/finally.hh" |
14 | 34 | #include "nix/fetchers/fetch-settings.hh" |
15 | 35 | #include "nix/flake/settings.hh" |
16 | 36 | #include "nix/expr/value-to-json.hh" |
17 | | -#include "nix/store/local-fs-store.hh" |
18 | 37 | #include "nix/fetchers/fetch-to-store.hh" |
19 | 38 | #include "nix/util/memory-source-accessor.hh" |
20 | 39 | #include "nix/fetchers/input-cache.hh" |
21 | | - |
22 | | -#include <nlohmann/json.hpp> |
| 40 | +#include "nix/expr/attr-set.hh" |
| 41 | +#include "nix/expr/eval-error.hh" |
| 42 | +#include "nix/expr/nixexpr.hh" |
| 43 | +#include "nix/expr/symbol-table.hh" |
| 44 | +#include "nix/expr/value.hh" |
| 45 | +#include "nix/expr/value/context.hh" |
| 46 | +#include "nix/fetchers/attrs.hh" |
| 47 | +#include "nix/fetchers/registry.hh" |
| 48 | +#include "nix/flake/flakeref.hh" |
| 49 | +#include "nix/store/path.hh" |
| 50 | +#include "nix/util/canon-path.hh" |
| 51 | +#include "nix/util/configuration.hh" |
| 52 | +#include "nix/util/error.hh" |
| 53 | +#include "nix/util/experimental-features.hh" |
| 54 | +#include "nix/util/file-system.hh" |
| 55 | +#include "nix/util/fmt.hh" |
| 56 | +#include "nix/util/hash.hh" |
| 57 | +#include "nix/util/logging.hh" |
| 58 | +#include "nix/util/pos-idx.hh" |
| 59 | +#include "nix/util/pos-table.hh" |
| 60 | +#include "nix/util/position.hh" |
| 61 | +#include "nix/util/source-path.hh" |
| 62 | +#include "nix/util/types.hh" |
| 63 | +#include "nix/util/util.hh" |
23 | 64 |
|
24 | 65 | namespace nix { |
| 66 | +struct SourceAccessor; |
25 | 67 |
|
26 | 68 | using namespace flake; |
27 | 69 |
|
@@ -865,7 +907,7 @@ static ref<SourceAccessor> makeInternalFS() |
865 | 907 | internalFS->setPathDisplay("«flakes-internal»", ""); |
866 | 908 | internalFS->addFile( |
867 | 909 | CanonPath("call-flake.nix"), |
868 | | -#include "call-flake.nix.gen.hh" |
| 910 | +#include "call-flake.nix.gen.hh" // IWYU pragma: keep |
869 | 911 | ); |
870 | 912 | return internalFS; |
871 | 913 | } |
|
0 commit comments