summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/filesystems/sshfs-fuse
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2017-08-13 22:29:00 +0200
committerMichael Weiss <dev.primeos@gmail.com>2017-08-14 00:14:38 +0200
commit059d722e5ce492917d6c48e9137f8df208231503 (patch)
tree0c6c704a45ee5ea69523b6a9f13de0d5cde457d1 /pkgs/tools/filesystems/sshfs-fuse
parentfbfe53b12ff42f376514fce2bc588d3ffd6a3aea (diff)
sshfs-fuse: 2.9 -> 2.10
Diffstat (limited to 'pkgs/tools/filesystems/sshfs-fuse')
-rw-r--r--pkgs/tools/filesystems/sshfs-fuse/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/filesystems/sshfs-fuse/default.nix b/pkgs/tools/filesystems/sshfs-fuse/default.nix
index dd49b19358ce..c1502a3227d2 100644
--- a/pkgs/tools/filesystems/sshfs-fuse/default.nix
+++ b/pkgs/tools/filesystems/sshfs-fuse/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, pkgconfig, glib, fuse, autoreconfHook }:
stdenv.mkDerivation rec {
- version = "2.9";
+ version = "2.10"; # Temporary (need to add libfuse 3.x first)
name = "sshfs-fuse-${version}";
src = fetchFromGitHub {
- repo = "sshfs";
owner = "libfuse";
+ repo = "sshfs";
rev = "sshfs-${version}";
- sha256 = "1n0cq72ps4dzsh72fgfprqn8vcfr7ilrkvhzpy5500wjg88diapv";
+ sha256 = "1dmw4kx6vyawcywiv8drrajnam0m29mxfswcp4209qafzx3mjlp1";
};
buildInputs = [ pkgconfig glib fuse autoreconfHook ];
@@ -19,9 +19,9 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- homepage = https://github.com/libfuse/sshfs;
+ inherit (src.meta) homepage;
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
platforms = platforms.linux;
- maintainers = with maintainers; [ jgeerds ];
+ maintainers = with maintainers; [ primeos ];
};
}