Unverified Commit 0f8c0221 authored by Et7f3's avatar Et7f3 Committed by GitHub
Browse files

bindfs: Use fuse3 on linux

The configure script try fuse3 and fallback to fuse2 aka fuse attributes.
parent 32851420
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, fuse, pkg-config }:
{ lib, stdenv, fetchurl, fuse, fuse3, pkg-config }:

stdenv.mkDerivation rec {
  version = "1.17.2";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ fuse ];
  buildInputs = if stdenv.isDarwin then [ fuse ] else [ fuse3 ];
  postFixup = ''
    ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
  '';