summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3fs
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/tools/filesystems/s3fs
parent85141b8609cae8747d29ea9ca66e58828a3a85e4 (diff)
downloadnixpkgs-fa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc.tar
nixpkgs-fa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc.tar.gz
nixpkgs-fa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc.tar.bz2
nixpkgs-fa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc.tar.lz
nixpkgs-fa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc.tar.xz
nixpkgs-fa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc.tar.zst
nixpkgs-fa6c8b656b72dfa97d7a5aa9892569fd6eb64dfc.zip
macfuse-stubs: init at 4.0.4
replaces osxfuse 3.8.3
Diffstat (limited to 'pkgs/tools/filesystems/s3fs')
-rw-r--r--pkgs/tools/filesystems/s3fs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/s3fs/default.nix b/pkgs/tools/filesystems/s3fs/default.nix
index e80e6530371..63a6153e8ca 100644
--- a/pkgs/tools/filesystems/s3fs/default.nix
+++ b/pkgs/tools/filesystems/s3fs/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse, osxfuse }:
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse, macfuse-stubs }:
 
 stdenv.mkDerivation rec {
   pname = "s3fs-fuse";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ curl openssl libxml2 ]
     ++ lib.optionals stdenv.isLinux [ fuse ]
-    ++ lib.optionals stdenv.isDarwin [ osxfuse ];
+    ++ lib.optionals stdenv.isDarwin [ macfuse-stubs ];
   nativeBuildInputs = [ autoreconfHook pkg-config ];
 
   configureFlags = [