mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 14:56:15 +02:00
22 lines
445 B
C++
22 lines
445 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";
|
||
|
}
|
||
|
|
||
|
std::string doc() override;
|
||
|
};
|
||
|
|
||
|
}
|