mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
12 lines
160 B
C++
12 lines
160 B
C++
|
#pragma once
|
||
|
|
||
|
#include "store-api.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
void runProgramInStore(ref<Store> store,
|
||
|
const std::string & program,
|
||
|
const Strings & args);
|
||
|
|
||
|
}
|