mirror of
https://github.com/NixOS/nix.git
synced 2025-11-10 12:36:01 +01:00
This will facilitate breaking up Nix into multiple packages for each component with Meson.
23 lines
493 B
C++
23 lines
493 B
C++
#include "binary-cache-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct LocalBinaryCacheStoreConfig : virtual BinaryCacheStoreConfig
|
|
{
|
|
using BinaryCacheStoreConfig::BinaryCacheStoreConfig;
|
|
|
|
LocalBinaryCacheStoreConfig(std::string_view scheme, PathView binaryCacheDir, const Params & params);
|
|
|
|
Path binaryCacheDir;
|
|
|
|
const std::string name() override
|
|
{
|
|
return "Local Binary Cache Store";
|
|
}
|
|
|
|
static std::set<std::string> uriSchemes();
|
|
|
|
std::string doc() override;
|
|
};
|
|
|
|
}
|