lol

Merge pull request #252406 from r-ryantm/auto-update/bindfs

bindfs: 1.17.3 -> 1.17.4

authored by

Pol Dellaiera and committed by
GitHub
3cecf9ab 083e38ad

+21 -10
+21 -10
pkgs/tools/filesystems/bindfs/default.nix
··· 1 - { lib, stdenv, fetchurl, fuse, fuse3, pkg-config }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 5 + , fuse 6 + , fuse3 7 + }: 2 8 3 - stdenv.mkDerivation rec { 4 - version = "1.17.3"; 9 + stdenv.mkDerivation (finalAttrs: { 10 + version = "1.17.4"; 5 11 pname = "bindfs"; 6 12 7 13 src = fetchurl { 8 - url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-wWh2CRVywjJCwW6Hxb5+NRL0Q6rmNzKNjAEcBx6TAus="; 14 + url = "https://bindfs.org/downloads/bindfs-${finalAttrs.version}.tar.gz"; 15 + hash = "sha256-b9Svm6LsK9tgPvjuoqnRLbLl/py+UrhkC0FXNKWfPcw="; 10 16 }; 11 17 12 - nativeBuildInputs = [ pkg-config ]; 18 + nativeBuildInputs = [ 19 + pkg-config 20 + ]; 21 + 13 22 buildInputs = if stdenv.isDarwin then [ fuse ] else [ fuse3 ]; 23 + 14 24 postFixup = '' 15 25 ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs 16 26 ''; 17 27 18 28 meta = { 29 + changelog = "https://github.com/mpartel/bindfs/raw/${finalAttrs.version}/ChangeLog"; 19 30 description = "A FUSE filesystem for mounting a directory to another location"; 20 - homepage = "https://bindfs.org"; 21 - license = lib.licenses.gpl2Only; 31 + homepage = "https://bindfs.org"; 32 + license = lib.licenses.gpl2Only; 22 33 maintainers = with lib.maintainers; [ lovek323 lovesegfault ]; 23 - platforms = lib.platforms.unix; 34 + platforms = lib.platforms.unix; 24 35 }; 25 - } 36 + })