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:
parent
de714833f1
commit
fa4733fce5
12 changed files with 474 additions and 339 deletions
14
src/libcmd/installable-value.hh
Normal file
14
src/libcmd/installable-value.hh
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#include "installables.hh"
|
||||
|
||||
namespace nix {
|
||||
|
||||
struct InstallableValue : Installable
|
||||
{
|
||||
ref<EvalState> state;
|
||||
|
||||
InstallableValue(ref<EvalState> state) : state(state) {}
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue