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