aboutsummaryrefslogtreecommitdiff
path: root/src/nix/run.hh
blob: fed3601580a60aca9239515de55fbff04948b166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "store-api.hh"

namespace nix {

void runProgramInStore(ref<Store> store,
    const std::string & program,
    const Strings & args,
    std::optional<std::string_view> system = std::nullopt);

}