nixpkgs/pkgs/tools/filesystems/bindfs/default.nix
Et7f3 0f8c0221c4
bindfs: Use fuse3 on linux
The configure script try fuse3 and fallback to fuse2 aka fuse attributes.
2023-04-29 12:29:34 +02:00

26 lines
755 B
Nix

{ lib, stdenv, fetchurl, fuse, fuse3, pkg-config }:
stdenv.mkDerivation rec {
version = "1.17.2";
pname = "bindfs";
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
sha256 = "sha256-XyxQpwuNWMAluB+/Nk+tQy0VSTZjDOACPMiLqo1codA=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = if stdenv.isDarwin then [ fuse ] else [ fuse3 ];
postFixup = ''
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
'';
meta = {
description = "A FUSE filesystem for mounting a directory to another location";
homepage = "https://bindfs.org";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ lovek323 lovesegfault ];
platforms = lib.platforms.unix;
};
}