nixpkgs/pkgs/os-specific/linux/fuse/common.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
3.8 KiB
Nix
Raw Normal View History

2018-05-11 21:48:38 +02:00
{ version, sha256Hash }:
{ lib, stdenv, fetchFromGitHub, fetchpatch
, fusePackages, util-linux, gettext, shadow
, meson, ninja, pkg-config
2018-02-28 02:58:38 +01:00
, autoreconfHook
2018-08-08 23:19:37 +02:00
, python3Packages, which
2017-09-22 02:13:05 +02:00
}:
let
2021-01-15 15:45:37 +01:00
isFuse3 = lib.hasPrefix "3" version;
in stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "fuse";
inherit version;
src = fetchFromGitHub {
owner = "libfuse";
repo = "libfuse";
2019-08-13 23:52:01 +02:00
rev = "${pname}-${version}";
sha256 = sha256Hash;
};
2018-02-28 02:58:38 +01:00
preAutoreconf = "touch config.rpath";
2017-09-22 02:13:05 +02:00
patches =
2021-01-15 15:45:37 +01:00
lib.optional
2017-09-22 02:13:05 +02:00
(!isFuse3 && stdenv.isAarch64)
(fetchpatch {
url = "https://github.com/libfuse/libfuse/commit/914871b20a901e3e1e981c92bc42b1c93b7ab81b.patch";
sha256 = "1w4j6f1awjrycycpvmlv0x5v9gprllh4dnbjxl4dyl2jgbkaw6pa";
})
++ (if isFuse3
then [ ./fuse3-install.patch ./fuse3-Do-not-set-FUSERMOUNT_DIR.patch ]
else [
./fuse2-Do-not-set-FUSERMOUNT_DIR.patch
(fetchpatch {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-fs/fuse/files/fuse-2.9.9-closefrom-glibc-2-34.patch?id=8a970396fca7aca2d5a761b8e7a8242f1eef14c9";
sha256 = "sha256-ELYBW/wxRcSMssv7ejCObrpsJHtOPJcGq33B9yHQII4=";
})
]);
2017-09-22 02:13:05 +02:00
nativeBuildInputs = if isFuse3
then [ meson ninja pkg-config ]
2018-02-28 02:58:38 +01:00
else [ autoreconfHook gettext ];
2021-01-15 15:45:37 +01:00
outputs = [ "out" ] ++ lib.optional isFuse3 "common";
2021-01-15 15:45:37 +01:00
mesonFlags = lib.optionals isFuse3 [
2019-07-10 13:20:40 +02:00
"-Dudevrulesdir=/udev/rules.d"
"-Duseroot=false"
];
2017-11-15 13:20:54 +01:00
preConfigure = ''
export MOUNT_FUSE_PATH=$out/sbin
export INIT_D_PATH=$TMPDIR/etc/init.d
export UDEV_RULES_PATH=$out/etc/udev/rules.d
# Ensure that FUSE calls the setuid wrapper, not
# $out/bin/fusermount. It falls back to calling fusermount in
# $PATH, so it should also work on non-NixOS systems.
export NIX_CFLAGS_COMPILE="-DFUSERMOUNT_DIR=\"/run/wrappers/bin\""
substituteInPlace lib/mount_util.c --replace "/bin/" "${util-linux}/bin/"
2017-09-22 02:13:05 +02:00
'' + (if isFuse3 then ''
# The configure phase will delete these files (temporary workaround for
# ./fuse3-install_man.patch)
install -D -m444 doc/fusermount3.1 $out/share/man/man1/fusermount3.1
2018-07-12 17:14:03 +02:00
install -D -m444 doc/mount.fuse3.8 $out/share/man/man8/mount.fuse3.8
2017-09-22 02:13:05 +02:00
'' else ''
substituteInPlace util/mount.fuse.c --replace '"su"' '"${shadow.su}/bin/su"'
2017-09-22 02:13:05 +02:00
sed -e 's@CONFIG_RPATH=/usr/share/gettext/config.rpath@CONFIG_RPATH=${gettext}/share/gettext/config.rpath@' -i makeconf.sh
./makeconf.sh
'');
2018-08-08 23:19:37 +02:00
checkInputs = [ which ] ++ (with python3Packages; [ python pytest ]);
checkPhase = ''
python3 -m pytest test/
'';
doCheck = false; # v2: no tests, v3: all tests get skipped in a sandbox
2017-09-22 02:13:05 +02:00
postFixup = "cd $out\n" + (if isFuse3 then ''
install -D -m444 etc/fuse.conf $common/etc/fuse.conf
install -D -m444 etc/udev/rules.d/99-fuse3.rules $common/etc/udev/rules.d/99-fuse.rules
'' else ''
cp ${fusePackages.fuse_3.common}/etc/fuse.conf etc/fuse.conf
cp ${fusePackages.fuse_3.common}/etc/udev/rules.d/99-fuse.rules etc/udev/rules.d/99-fuse.rules
2017-09-22 02:13:05 +02:00
'');
meta = with lib; {
2020-03-21 21:41:37 +01:00
description = "Library that allows filesystems to be implemented in user space";
longDescription = ''
FUSE (Filesystem in Userspace) is an interface for userspace programs to
export a filesystem to the Linux kernel. The FUSE project consists of two
components: The fuse kernel module (maintained in the regular kernel
repositories) and the libfuse userspace library (this package). libfuse
provides the reference implementation for communicating with the FUSE
kernel module.
'';
homepage = "https://github.com/libfuse/libfuse";
2020-03-21 21:41:37 +01:00
changelog = "https://github.com/libfuse/libfuse/releases/tag/fuse-${version}";
2018-05-11 21:48:38 +02:00
platforms = platforms.linux;
2021-04-12 13:31:17 +02:00
license = with licenses; [ gpl2Only lgpl21Only ];
2018-05-11 21:48:38 +02:00
maintainers = [ maintainers.primeos ];
};
}