about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/store/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/store/default.nix b/tvix/store/default.nix
index e324866a7f..90fa3f06a2 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);