mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
2aa9cf34dd
It is a property of the configuration of a store --- how a store URL is parsed into a store config, not a store itself. Progress towards #10766
30 lines
700 B
C++
30 lines
700 B
C++
#include "binary-cache-store.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct HttpBinaryCacheStoreConfig : virtual BinaryCacheStoreConfig
|
|
{
|
|
using BinaryCacheStoreConfig::BinaryCacheStoreConfig;
|
|
|
|
HttpBinaryCacheStoreConfig(std::string_view scheme, std::string_view _cacheUri, const Params & params);
|
|
|
|
Path cacheUri;
|
|
|
|
const std::string name() override
|
|
{
|
|
return "HTTP Binary Cache Store";
|
|
}
|
|
|
|
static std::set<std::string> uriSchemes()
|
|
{
|
|
static bool forceHttp = getEnv("_NIX_FORCE_HTTP") == "1";
|
|
auto ret = std::set<std::string>({"http", "https"});
|
|
if (forceHttp)
|
|
ret.insert("file");
|
|
return ret;
|
|
}
|
|
|
|
std::string doc() override;
|
|
};
|
|
|
|
}
|