sshfs-fuse: 2.9 -> 2.10

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