forked from lix-project/lix
15 lines
193 B
C++
15 lines
193 B
C++
|
#pragma once
|
||
|
|
||
|
#include "installables.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
struct InstallableValue : Installable
|
||
|
{
|
||
|
ref<EvalState> state;
|
||
|
|
||
|
InstallableValue(ref<EvalState> state) : state(state) {}
|
||
|
};
|
||
|
|
||
|
}
|