2017-08-19 21:42:50 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, glib, fuse3, autoreconfHook }:
|
2007-01-06 18:36:03 +01:00
|
|
|
|
2009-12-08 12:38:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-19 21:42:50 +02:00
|
|
|
version = "3.2.0";
|
2016-03-06 17:22:17 +01:00
|
|
|
name = "sshfs-fuse-${version}";
|
2017-09-22 17:10:12 +02:00
|
|
|
|
2016-02-25 12:27:18 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libfuse";
|
2017-08-13 22:29:00 +02:00
|
|
|
repo = "sshfs";
|
2016-03-06 17:22:17 +01:00
|
|
|
rev = "sshfs-${version}";
|
2017-08-19 21:42:50 +02:00
|
|
|
sha256 = "09pqdibhcj1p7m6vxkqiprvbcxp9iq2lm1hb6w7p8iarmvp80rlv";
|
2007-01-06 18:36:03 +01:00
|
|
|
};
|
2017-09-22 17:10:12 +02:00
|
|
|
|
2017-08-19 21:42:50 +02:00
|
|
|
buildInputs = [ pkgconfig glib fuse3 autoreconfHook ];
|
2016-02-25 12:27:18 +01:00
|
|
|
|
2017-09-22 17:10:12 +02:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optional
|
|
|
|
(stdenv.system == "i686-linux")
|
|
|
|
"-D_FILE_OFFSET_BITS=64";
|
|
|
|
|
2011-08-09 22:38:55 +02:00
|
|
|
postInstall = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/sbin
|
2011-08-09 22:38:55 +02:00
|
|
|
ln -sf $out/bin/sshfs $out/sbin/mount.sshfs
|
|
|
|
'';
|
2007-12-24 14:27:07 +01:00
|
|
|
|
2015-06-22 08:25:07 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-13 22:29:00 +02:00
|
|
|
inherit (src.meta) homepage;
|
2007-12-24 14:27:07 +01:00
|
|
|
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
|
2015-06-22 08:25:07 +02:00
|
|
|
platforms = platforms.linux;
|
2017-08-13 22:29:00 +02:00
|
|
|
maintainers = with maintainers; [ primeos ];
|
2007-12-24 14:27:07 +01:00
|
|
|
};
|
2007-01-06 18:36:03 +01:00
|
|
|
}
|