diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-02-03 14:53:40 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-02-20 09:09:11 -0500 |
commit | fa4733fce5e473901ccb5dfd08593c861a4e1f0e (patch) | |
tree | 304e785e20d772a81ef5b6e0a592d448e5e4a8ca /src/nix | |
parent | de714833f1f874690452bd55e5a72ae73e45f076 (diff) |
Split out `InstallableFlake` and `InstallableAttrPath`
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/bundle.cc | 1 | ||||
-rw-r--r-- | src/nix/develop.cc | 1 | ||||
-rw-r--r-- | src/nix/flake.cc | 1 | ||||
-rw-r--r-- | src/nix/profile.cc | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/nix/bundle.cc b/src/nix/bundle.cc index 6ae9460f6..dcf9a6f2d 100644 --- a/src/nix/bundle.cc +++ b/src/nix/bundle.cc @@ -1,4 +1,5 @@ #include "command.hh" +#include "installable-flake.hh" #include "common-args.hh" #include "shared.hh" #include "store-api.hh" diff --git a/src/nix/develop.cc b/src/nix/develop.cc index 16bbd8613..9d07a7a85 100644 --- a/src/nix/develop.cc +++ b/src/nix/develop.cc @@ -1,5 +1,6 @@ #include "eval.hh" #include "command.hh" +#include "installable-flake.hh" #include "common-args.hh" #include "shared.hh" #include "store-api.hh" diff --git a/src/nix/flake.cc b/src/nix/flake.cc index c025bc7a6..053a9c9e1 100644 --- a/src/nix/flake.cc +++ b/src/nix/flake.cc @@ -1,4 +1,5 @@ #include "command.hh" +#include "installable-flake.hh" #include "common-args.hh" #include "shared.hh" #include "eval.hh" diff --git a/src/nix/profile.cc b/src/nix/profile.cc index 32364e720..208542a5c 100644 --- a/src/nix/profile.cc +++ b/src/nix/profile.cc @@ -1,4 +1,5 @@ #include "command.hh" +#include "installable-flake.hh" #include "common-args.hh" #include "shared.hh" #include "store-api.hh" |