c164d304f3
This makes 'nix develop' set the Linux personality in the same way that the actual build does, allowing a command like 'nix develop nix#devShells.i686-linux.default' on x86_64-linux to work correctly.
13 lines
219 B
C++
13 lines
219 B
C++
#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);
|
|
|
|
}
|