sshfs-fuse: 2.9 -> 2.10

+5 -5
+5 -5
pkgs/tools/filesystems/sshfs-fuse/default.nix
··· 1 1 { stdenv, fetchFromGitHub, pkgconfig, glib, fuse, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.9"; 4 + version = "2.10"; # Temporary (need to add libfuse 3.x first) 5 5 name = "sshfs-fuse-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 + owner = "libfuse"; 8 9 repo = "sshfs"; 9 - owner = "libfuse"; 10 10 rev = "sshfs-${version}"; 11 - sha256 = "1n0cq72ps4dzsh72fgfprqn8vcfr7ilrkvhzpy5500wjg88diapv"; 11 + sha256 = "1dmw4kx6vyawcywiv8drrajnam0m29mxfswcp4209qafzx3mjlp1"; 12 12 }; 13 13 14 14 buildInputs = [ pkgconfig glib fuse autoreconfHook ]; ··· 19 19 ''; 20 20 21 21 meta = with stdenv.lib; { 22 - homepage = https://github.com/libfuse/sshfs; 22 + inherit (src.meta) homepage; 23 23 description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH"; 24 24 platforms = platforms.linux; 25 - maintainers = with maintainers; [ jgeerds ]; 25 + maintainers = with maintainers; [ primeos ]; 26 26 }; 27 27 }