Split out InstallableFlake and InstallableAttrPath

This commit is contained in:
John Ericson
2023-02-20 09:09:11 -05:00
parent de714833f1
commit fa4733fce5
12 changed files with 474 additions and 339 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include "installables.hh"
namespace nix {
struct InstallableValue : Installable
{
ref<EvalState> state;
InstallableValue(ref<EvalState> state) : state(state) {}
};
}