1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-08 18:11:02 +01:00

Merge pull request #14713 from lovesegfault/fix-s3-docs

fix(libstore/s3-binary-cache-store): include documentation from markdown file
This commit is contained in:
Eelco Dolstra 2025-12-05 11:38:25 +00:00 committed by GitHub
commit 92d4fafd53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -454,11 +454,9 @@ std::string S3BinaryCacheStoreConfig::getHumanReadableURI() const
std::string S3BinaryCacheStoreConfig::doc()
{
return R"(
**Store URL format**: `s3://bucket-name`
This store allows reading and writing a binary cache stored in an AWS S3 bucket.
)";
return
#include "s3-binary-cache-store.md"
;
}
ref<Store> S3BinaryCacheStoreConfig::openStore() const