diff options
Diffstat (limited to 'tvix/default.nix')
-rw-r--r-- | tvix/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tvix/default.nix b/tvix/default.nix index 19cb0fdd5aae..1b18b7b3fdf2 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 ''; }; |