aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-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/local-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/local-binary-cache-store.cc')
-rw-r--r--src/libstore/local-binary-cache-store.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/local-binary-cache-store.cc b/src/libstore/local-binary-cache-store.cc
index b893befbc..357bc74df 100644
--- a/src/libstore/local-binary-cache-store.cc
+++ b/src/libstore/local-binary-cache-store.cc
@@ -7,6 +7,8 @@ namespace nix {
struct LocalBinaryCacheStoreConfig : virtual BinaryCacheStoreConfig
{
using BinaryCacheStoreConfig::BinaryCacheStoreConfig;
+
+ const std::string name() override { return "Local Binary Cache Store"; }
};
class LocalBinaryCacheStore : public BinaryCacheStore, public virtual LocalBinaryCacheStoreConfig