nixpkgs/pkgs/tools/filesystems/sshfs-fuse/default.nix

53 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub
2020-11-09 17:24:45 +00:00
, meson, pkg-config, ninja, docutils, makeWrapper
2018-08-28 15:59:16 +00:00
, fuse3, glib
, which, python3Packages
, openssh
2017-09-23 20:16:14 +00:00
}:
stdenv.mkDerivation rec {
2020-11-09 17:24:45 +00:00
version = "3.7.1";
pname = "sshfs-fuse";
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-11-09 17:24:45 +00:00
sha256 = "088mgcsqv9f2vly4xn6lvvkmqkgr9jjmjs9qp8938hl7j6rrgd17";
};
2020-11-09 17:24:45 +00:00
nativeBuildInputs = [ meson pkg-config ninja docutils makeWrapper ];
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
(stdenv.hostPlatform.system == "i686-linux")
"-D_FILE_OFFSET_BITS=64";
postInstall = ''
mkdir -p $out/sbin
ln -sf $out/bin/sshfs $out/sbin/mount.sshfs
wrapProgram $out/bin/sshfs --prefix PATH : "${openssh}/bin"
'';
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;
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 ];
};
}