mirror of
https://github.com/NixOS/nix.git
synced 2025-12-10 02:51:02 +01:00
This introduces the SourcePath type from lazy-trees as an abstraction for accessing files from inputs that may not be materialized in the real filesystem (e.g. Git repositories). Currently, however, it's just a wrapper around CanonPath, so it shouldn't change any behaviour. (On lazy-trees, SourcePath is a <InputAccessor, CanonPath> tuple.)
31 lines
498 B
C++
31 lines
498 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "args.hh"
|
|
|
|
namespace nix {
|
|
|
|
class Store;
|
|
class EvalState;
|
|
class Bindings;
|
|
struct SourcePath;
|
|
|
|
struct MixEvalArgs : virtual Args
|
|
{
|
|
static constexpr auto category = "Common evaluation options";
|
|
|
|
MixEvalArgs();
|
|
|
|
Bindings * getAutoArgs(EvalState & state);
|
|
|
|
Strings searchPath;
|
|
|
|
std::optional<std::string> evalStoreUrl;
|
|
|
|
private:
|
|
std::map<std::string, std::string> autoArgs;
|
|
};
|
|
|
|
SourcePath lookupFileArg(EvalState & state, std::string_view s);
|
|
|
|
}
|