From d8f5c5b109764391ec37256b7f20fc2954bfa748 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 26 Sep 2023 10:54:51 +0300 Subject: fix(tvix/store): allow building with Nix on Darwin Curently both fuse and virtiofs features fail to build on Darwin. Disable them for now until fixed. Change-Id: Ic99fa5e3ebec8a7072ba884101a5c18652ed409c Reviewed-on: https://cl.tvl.fyi/c/depot/+/9473 Autosubmit: flokli Reviewed-by: raitobezarius Tested-by: BuildkiteCI --- tvix/store/default.nix | 2 ++ 1 file changed, 2 insertions(+) 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); -- cgit 1.4.1