tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sshfs-fuse: 2.9 -> 2.10
Michael Weiss
8 years ago
059d722e
fbfe53b1
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
filesystems
sshfs-fuse
default.nix
+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
4
-
version = "2.9";
4
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
8
+
owner = "libfuse";
8
9
repo = "sshfs";
9
9
-
owner = "libfuse";
10
10
rev = "sshfs-${version}";
11
11
-
sha256 = "1n0cq72ps4dzsh72fgfprqn8vcfr7ilrkvhzpy5500wjg88diapv";
11
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
22
-
homepage = https://github.com/libfuse/sshfs;
22
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
25
-
maintainers = with maintainers; [ jgeerds ];
25
25
+
maintainers = with maintainers; [ primeos ];
26
26
};
27
27
}