nix-super/src/libcmd/installable-value.hh

15 lines
193 B
C++
Raw Normal View History

#pragma once
#include "installables.hh"
namespace nix {
struct InstallableValue : Installable
{
ref<EvalState> state;
InstallableValue(ref<EvalState> state) : state(state) {}
};
}