about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/tvix/default.nix b/tvix/default.nix
index 19cb0fdd5a..1b18b7b3fd 100644
--- a/tvix/default.nix
+++ b/tvix/default.nix
@@ -75,16 +75,18 @@ in
     inherit cargoDeps;
     name = "tvix-rust-docs";
     src = depot.third_party.gitignoreSource ./.;
+    PROTO_ROOT = depot.tvix.store.protos;
 
     nativeBuildInputs = with pkgs; [
       cargo
       rust-analyzer
       rustPlatform.cargoSetupHook
       rustc
+      protobuf
     ];
 
     buildPhase = ''
-      cargo doc --document-private-items -p tvix-eval -p tvix-serde -p nix-compat
+      cargo doc --document-private-items
       mv target/doc $out
     '';
   };