blob: 97ddef19b62bb1960f0f17a460db62e0340e4e73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
///@file
#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);
}
|