Unverified Commit d6ac6408 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #228568 from Et7f3/patch-1

bindfs: Use fuse3 on Linux
parents d7fa40f3 0f8c0221
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
  '';