2020-01-04 18:51:37 +00:00
|
|
|
{ stdenv, fetchFromGitHub
|
|
|
|
, meson, pkgconfig, ninja, docutils, makeWrapper
|
2018-08-28 15:59:16 +00:00
|
|
|
, fuse3, glib
|
|
|
|
, which, python3Packages
|
2019-10-13 09:41:10 +00:00
|
|
|
, openssh
|
2017-09-23 20:16:14 +00:00
|
|
|
}:
|
2007-01-06 17:36:03 +00:00
|
|
|
|
2018-07-20 19:36:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-01-04 18:51:37 +00:00
|
|
|
version = "3.7.0";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "sshfs-fuse";
|
2017-09-22 15:10:12 +00:00
|
|
|
|
2016-02-25 11:27:18 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libfuse";
|
2017-08-13 20:29:00 +00:00
|
|
|
repo = "sshfs";
|
2016-03-06 16:22:17 +00:00
|
|
|
rev = "sshfs-${version}";
|
2020-01-04 18:51:37 +00:00
|
|
|
sha256 = "119qvjaai3nqs2psqk2kv4gxjchrnrcfnmlwk7yxnj3v59pgyxhv";
|
2007-01-06 17:36:03 +00:00
|
|
|
};
|
2017-09-22 15:10:12 +00:00
|
|
|
|
2019-10-13 09:41:10 +00:00
|
|
|
nativeBuildInputs = [ meson pkgconfig ninja docutils makeWrapper ];
|
2017-12-26 16:55:48 +00:00
|
|
|
buildInputs = [ fuse3 glib ];
|
2018-08-28 15:59:16 +00:00
|
|
|
checkInputs = [ which python3Packages.pytest ];
|
2016-02-25 11:27:18 +00:00
|
|
|
|
2019-10-30 01:29:30 +00:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString
|
2018-08-20 19:11:29 +00:00
|
|
|
(stdenv.hostPlatform.system == "i686-linux")
|
2017-09-22 15:10:12 +00:00
|
|
|
"-D_FILE_OFFSET_BITS=64";
|
|
|
|
|
2011-08-09 20:38:55 +00:00
|
|
|
postInstall = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/sbin
|
2011-08-09 20:38:55 +00:00
|
|
|
ln -sf $out/bin/sshfs $out/sbin/mount.sshfs
|
2019-10-13 09:41:10 +00:00
|
|
|
wrapProgram $out/bin/sshfs --prefix PATH : "${openssh}/bin"
|
2011-08-09 20:38:55 +00:00
|
|
|
'';
|
2007-12-24 13:27:07 +00:00
|
|
|
|
2018-08-28 15:59:16 +00:00
|
|
|
#doCheck = true;
|
2018-08-08 21:34:52 +00:00
|
|
|
checkPhase = ''
|
2018-08-28 15:59:16 +00:00
|
|
|
# The tests need fusermount:
|
|
|
|
mkdir bin && cp ${fuse3}/bin/fusermount3 bin/fusermount
|
|
|
|
export PATH=bin:$PATH
|
|
|
|
# Can't access /dev/fuse within the sandbox: "FUSE kernel module does not seem to be loaded"
|
|
|
|
substituteInPlace test/util.py --replace "/dev/fuse" "/dev/null"
|
|
|
|
# TODO: "fusermount executable not setuid, and we are not root"
|
|
|
|
# We should probably use a VM test instead
|
2018-08-08 21:34:52 +00:00
|
|
|
python3 -m pytest test/
|
|
|
|
'';
|
|
|
|
|
2015-06-22 06:25:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-13 20:29:00 +00:00
|
|
|
inherit (src.meta) homepage;
|
2007-12-24 13:27:07 +00:00
|
|
|
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
|
2015-06-22 06:25:07 +00:00
|
|
|
platforms = platforms.linux;
|
2018-08-11 12:33:17 +00:00
|
|
|
license = licenses.gpl2;
|
2017-08-13 20:29:00 +00:00
|
|
|
maintainers = with maintainers; [ primeos ];
|
2007-12-24 13:27:07 +00:00
|
|
|
};
|
2007-01-06 17:36:03 +00:00
|
|
|
}
|