9 stdenv.mkDerivation (finalAttrs: {
14 url = "https://bindfs.org/downloads/bindfs-${finalAttrs.version}.tar.gz";
15 hash = "sha256-wLBg6Uw6IxodSqC88mb/GJmBpO845C++IylqfYFxm3o=";
22 buildInputs = if stdenv.hostPlatform.isDarwin then [ fuse ] else [ fuse3 ];
24 configureFlags = lib.optional stdenv.hostPlatform.isDarwin "--disable-macos-fs-link";
27 ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
31 changelog = "https://github.com/mpartel/bindfs/raw/${finalAttrs.version}/ChangeLog";
32 description = "FUSE filesystem for mounting a directory to another location";
33 homepage = "https://bindfs.org";
34 license = lib.licenses.gpl2Only;
35 maintainers = with lib.maintainers; [ lovek323 lovesegfault ];
36 platforms = lib.platforms.unix;