mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
12 lines
243 B
C++
12 lines
243 B
C++
|
#include "command-installable-value.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
void InstallableValueCommand::run(ref<Store> store, ref<Installable> installable)
|
||
|
{
|
||
|
auto installableValue = InstallableValue::require(installable);
|
||
|
run(store, installableValue);
|
||
|
}
|
||
|
|
||
|
}
|