Skip to content

Commit

Permalink
sshfs-fuse: 2.10 -> 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
primeos committed Sep 21, 2017
1 parent 351f5fc commit 137142a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/tools/filesystems/sshfs-fuse/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, pkgconfig, glib, fuse, autoreconfHook }:
{ stdenv, fetchFromGitHub, pkgconfig, glib, fuse3, autoreconfHook }:

stdenv.mkDerivation rec {
version = "2.10"; # Temporary (need to add libfuse 3.x first)
version = "3.2.0";
name = "sshfs-fuse-${version}";

src = fetchFromGitHub {
owner = "libfuse";
repo = "sshfs";
rev = "sshfs-${version}";
sha256 = "1dmw4kx6vyawcywiv8drrajnam0m29mxfswcp4209qafzx3mjlp1";
sha256 = "09pqdibhcj1p7m6vxkqiprvbcxp9iq2lm1hb6w7p8iarmvp80rlv";
};

buildInputs = [ pkgconfig glib fuse autoreconfHook ];
buildInputs = [ pkgconfig glib fuse3 autoreconfHook ];

postInstall = ''
mkdir -p $out/sbin
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ mapAliases (rec {
spaceOrbit = space-orbit; # addewd 2016-05-23
speedtest_cli = speedtest-cli; # added 2015-02-17
sqliteInteractive = sqlite-interactive; # added 2014-12-06
sshfs = sshfs-fuse; # added 2017-08-14
sshfsFuse = sshfs-fuse; # added 2016-09
surf-webkit2 = surf; # added 2017-04-02
system_config_printer = system-config-printer; # added 2016-01-03
Expand Down

0 comments on commit 137142a

Please sign in to comment.