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

53 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub
, meson, pkgconfig, ninja, docutils, makeWrapper
2018-08-28 17:59:16 +02:00
, fuse3, glib
, which, python3Packages
, openssh
2017-09-23 22:16:14 +02:00
}:
stdenv.mkDerivation rec {
version = "3.7.0";
pname = "sshfs-fuse";
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}";
sha256 = "119qvjaai3nqs2psqk2kv4gxjchrnrcfnmlwk7yxnj3v59pgyxhv";
};
nativeBuildInputs = [ meson pkgconfig ninja docutils makeWrapper ];
buildInputs = [ fuse3 glib ];
2018-08-28 17:59:16 +02:00
checkInputs = [ which python3Packages.pytest ];
2016-02-25 12:27:18 +01:00
2019-10-30 02:29:30 +01: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 17:59:16 +02:00
#doCheck = true;
2018-08-08 23:34:52 +02:00
checkPhase = ''
2018-08-28 17:59:16 +02: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 23:34:52 +02:00
python3 -m pytest test/
'';
2015-06-22 08:25:07 +02:00
meta = with stdenv.lib; {
2017-08-13 22:29:00 +02:00
inherit (src.meta) homepage;
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
2015-06-22 08:25:07 +02:00
platforms = platforms.linux;
2018-08-11 14:33:17 +02:00
license = licenses.gpl2;
2017-08-13 22:29:00 +02:00
maintainers = with maintainers; [ primeos ];
};
}