diff options
author | Florian Klink <flokli@flokli.de> | 2024-06-16T07·43+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-06-16T12·02+0000 |
commit | 4be250109cb5df976cb137a3f631bc9f23faa952 (patch) | |
tree | 34e8fae342fafb898ed29d8e2c08b8da917c884c /tvix/shell.nix | |
parent | 7e42b4f314c2136366c4456f2af894108e765abf (diff) |
refactor(tvix/store): drop FUSE multithread workaround for Darwin r/8286
The underlying issue in macFUSE has been fixed in https://github.com/osxfuse/osxfuse/issues/974. Bump our `macfuse` in nixpkgs to a version containing the fix. This can be removed while our nixpkgs pin is bumped past https://github.com/NixOS/nixpkgs/pull/320197. Change-Id: Ia0e644fb13198e45018b0a218647ef211acf4df1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11824 Tested-by: BuildkiteCI Reviewed-by: Brian Olsen <me@griff.name>
Diffstat (limited to 'tvix/shell.nix')
-rw-r--r-- | tvix/shell.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tvix/shell.nix b/tvix/shell.nix index eae0931bfd09..947cda269b2f 100644 --- a/tvix/shell.nix +++ b/tvix/shell.nix @@ -16,6 +16,19 @@ ./nixpkgs/cbtemulator-uds.patch ]; }); + + # macFUSE bump containing fix for https://github.com/osxfuse/osxfuse/issues/974 + # https://github.com/NixOS/nixpkgs/pull/320197 + fuse = + if super.stdenv.isDarwin then + super.fuse.overrideAttrs + (old: rec { + version = "4.8.0"; + src = super.fetchurl { + url = "https://github.com/osxfuse/osxfuse/releases/download/macfuse-${version}/macfuse-${version}.dmg"; + hash = "sha256-ucTzO2qdN4QkowMVvC3+4pjEVjbwMsB0xFk+bvQxwtQ="; + }; + }) else super.fuse; }) ]; }) |