about summary refs log tree commit diff
path: root/pkgs/development/python-modules/llfuse
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2021-01-02 01:02:32 +0900
committermidchildan <git@midchildan.org>2021-03-21 15:50:13 +0900
commitfa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc (patch)
tree2d8c118a61edab5d2bcce7ce49a6e00ec9667920 /pkgs/development/python-modules/llfuse
parent85141b8609cae8747d29ea9ca66e58828a3a85e4 (diff)
macfuse-stubs: init at 4.0.4
replaces osxfuse 3.8.3
Diffstat (limited to 'pkgs/development/python-modules/llfuse')
-rw-r--r--pkgs/development/python-modules/llfuse/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index e615582a282dd..6dffffd8b0850 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchPypi, fetchpatch, buildPythonPackage, pkg-config, pytest, fuse, attr, which
-, contextlib2, osxfuse
+, contextlib2, macfuse-stubs
 }:
 
 buildPythonPackage rec {
@@ -23,7 +23,7 @@ buildPythonPackage rec {
 
   buildInputs =
     lib.optionals stdenv.isLinux [ fuse ]
-    ++ lib.optionals stdenv.isDarwin [ osxfuse ];
+    ++ lib.optionals stdenv.isDarwin [ macfuse-stubs ];
 
   checkInputs = [ pytest which ] ++
     lib.optionals stdenv.isLinux [ attr ];