bindfs 1.17.1 -> 1.17.2 https://repology.org/metapackage/bindfs/versions attrpath: bindfs Checking auto update branch... No auto update branch exists Old version 1.17.1" not present in master derivation file with contents: { lib, stdenv, fetchurl, fuse, 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 = [ fuse ]; 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; }; }