1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

Split out InstallableFlake and InstallableAttrPath

This commit is contained in:
John Ericson 2023-02-03 14:53:40 -05:00
parent de714833f1
commit fa4733fce5
12 changed files with 474 additions and 339 deletions

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) {}
};
}