blob: d7581534b45b4998278afef72115738097c90a1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "command-installable-value.hh"
namespace nix {
void InstallableValueCommand::run(ref<Store> store, ref<Installable> installable)
{
auto installableValue = InstallableValue::require(installable);
run(store, installableValue);
}
}
|