chore(tvix/docs): move [ca]store docs to tvix/docs

Change-Id: Idd78ffae34b6ea7b93d13de73b98c61a348869fb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11808
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
Florian Klink 2024-06-13 22:04:32 +03:00 committed by clbot
parent adc7353bd1
commit 6947dc4349
7 changed files with 8 additions and 1 deletions

View file

@ -4,6 +4,13 @@
- [Architecture & data flow](./architecture.md)
- [TODOs](./TODO.md)
# Store
- [Store API](./store/api.md)
- [BlobStore Chunking](./castore/blobstore-chunking.md)
- [BlobStore Protocol](./castore/blobstore-protocol.md)
- [Data Model](./castore/data-model.md)
- [Why not git trees?](./castore/why-not-git-trees.md)
# Nix
- [Specification of the Nix Language](./language-spec.md)
- [Nix language version history](./lang-version.md)

View file

@ -33,7 +33,7 @@ in
})).overrideAttrs (old: rec {
meta.ci = {
targets = [ "integration-tests" ] ++ lib.filter (x: lib.hasPrefix "with-features" x || x == "no-features") (lib.attrNames passthru);
extraSteps.import-docs = (mkImportCheck "tvix/store/docs" ./docs);
extraSteps.import-docs = (mkImportCheck "tvix/docs/src/store" ../docs/src/store);
};
passthru = (depot.tvix.utils.mkFeaturePowerset {
inherit (old) crateName;