aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/http-binary-cache-store.cc
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2020-09-14 14:04:02 +0200
committerregnat <rg@regnat.ovh>2020-09-16 13:53:09 +0200
commitb73adacc1ebda8a790cd8e0b0988c3b0607d947a (patch)
tree08e8416aa8b4db343dbe7f10b07abadca58a49f1 /src/libstore/http-binary-cache-store.cc
parentf24f0888f93b0881e2cefa1ceb4c8fc187c94f21 (diff)
Add a name to the stores
So that it can be printed by `nix describe-stores`
Diffstat (limited to 'src/libstore/http-binary-cache-store.cc')
-rw-r--r--src/libstore/http-binary-cache-store.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/http-binary-cache-store.cc b/src/libstore/http-binary-cache-store.cc
index bd65273eb..f4ab15a10 100644
--- a/src/libstore/http-binary-cache-store.cc
+++ b/src/libstore/http-binary-cache-store.cc
@@ -10,6 +10,8 @@ MakeError(UploadToHTTP, Error);
struct HttpBinaryCacheStoreConfig : virtual BinaryCacheStoreConfig
{
using BinaryCacheStoreConfig::BinaryCacheStoreConfig;
+
+ const std::string name() override { return "Http Binary Cache Store"; }
};
class HttpBinaryCacheStore : public BinaryCacheStore, public HttpBinaryCacheStoreConfig