aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/command-installable-value.cc
blob: 7e0c15eb8cb9269ad4d61c4b53493c9e106478c8 (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);
}

}