mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
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) {}
|
|
};
|
|
|
|
}
|