nix: only set FUSE_LIBRARY_PATH on non-macOS

This commit is contained in:
ihaveahax 2024-02-11 12:24:40 -06:00
parent db3e6fbae7
commit 9acf7a4987
No known key found for this signature in database
GPG Key ID: 90725113CA578EAA

View File

@ -18,7 +18,7 @@ buildPythonApplication rec {
haccrypto
];
makeWrapperArgs = [
makeWrapperArgs = lib.optional (!stdenv.isDarwin) [
"--set FUSE_LIBRARY_PATH ${pkgs.fuse}/lib/libfuse.so.2"
];
}