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

#include "store-api.hh"

namespace nix {

void runProgramInStore(ref<Store> store,
    const std::string & program,
    const Strings & args);

}