about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3fs
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2021-03-23 23:15:56 +0900
committermidchildan <git@midchildan.org>2021-03-23 23:42:16 +0900
commitc595604bed30d4e6a63ec1d20ba430897ebda653 (patch)
tree01d2cd58beed0b93d815f79ed22e0e62657cc74a /pkgs/tools/filesystems/s3fs
parent55b7888f43fe39ef672d6a6dcf5dd23aa2fc0502 (diff)
fuse: use macfuse-stubs instead on Darwin
Diffstat (limited to 'pkgs/tools/filesystems/s3fs')
-rw-r--r--pkgs/tools/filesystems/s3fs/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/s3fs/default.nix b/pkgs/tools/filesystems/s3fs/default.nix
index 63a6153e8ca6c..95b5b6ab34aa2 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, macfuse-stubs }:
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse }:
 
 stdenv.mkDerivation rec {
   pname = "s3fs-fuse";
@@ -11,9 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-Agb0tq7B98Ioe0G/XEZCYcFQKnMuYXX9x0yg4Gvu3/k=";
   };
 
-  buildInputs = [ curl openssl libxml2 ]
-    ++ lib.optionals stdenv.isLinux [ fuse ]
-    ++ lib.optionals stdenv.isDarwin [ macfuse-stubs ];
+  buildInputs = [ curl openssl libxml2 fuse ];
   nativeBuildInputs = [ autoreconfHook pkg-config ];
 
   configureFlags = [