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