diff options
-rw-r--r-- | tvix/store/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/store/default.nix b/tvix/store/default.nix index e324866a7f69..90fa3f06a2d9 100644 --- a/tvix/store/default.nix +++ b/tvix/store/default.nix @@ -24,6 +24,8 @@ in (depot.tvix.crates.workspaceMembers.tvix-store.build.override { runTests = true; + # both fuse and virtiofs features currently fail to build on Darwin. + features = if pkgs.stdenv.isDarwin then [ "tonic-reflection" ] else [ "default" ]; }).overrideAttrs (_: { meta.ci.extraSteps = { import-docs = (mkImportCheck "tvix/store/docs" ./docs); |