1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/fuse/common.nix

78 lines
2.5 KiB
Nix
Raw Normal View History

2018-05-11 20:48:38 +01:00
{ version, sha256Hash }:
{ stdenv, fetchFromGitHub, fetchpatch
2017-09-22 01:13:05 +01:00
, fusePackages, utillinux, gettext
, meson, ninja, pkgconfig
2018-02-28 01:58:38 +00:00
, autoreconfHook
2017-09-22 01:13:05 +01:00
}:
let
isFuse3 = stdenv.lib.hasPrefix "3" version;
in stdenv.mkDerivation rec {
name = "fuse-${version}";
src = fetchFromGitHub {
owner = "libfuse";
repo = "libfuse";
rev = name;
sha256 = sha256Hash;
};
2018-02-28 01:58:38 +00:00
preAutoreconf = "touch config.rpath";
2017-09-22 01:13:05 +01:00
patches =
stdenv.lib.optional
(!isFuse3 && stdenv.isAarch64)
(fetchpatch {
url = "https://github.com/libfuse/libfuse/commit/914871b20a901e3e1e981c92bc42b1c93b7ab81b.patch";
sha256 = "1w4j6f1awjrycycpvmlv0x5v9gprllh4dnbjxl4dyl2jgbkaw6pa";
})
2018-05-11 20:48:38 +01:00
++ stdenv.lib.optional isFuse3 ./fuse3-install.patch;
2017-09-22 01:13:05 +01:00
nativeBuildInputs = if isFuse3
then [ meson ninja pkgconfig ]
2018-02-28 01:58:38 +00:00
else [ autoreconfHook gettext ];
outputs = [ "out" ] ++ stdenv.lib.optional isFuse3 "common";
2017-11-15 12:20:54 +00:00
mesonFlags = stdenv.lib.optional isFuse3 "-Dudevrulesdir=etc/udev/rules.d";
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\""
sed -e 's@/bin/@${utillinux}/bin/@g' -i lib/mount_util.c
2017-09-22 01:13:05 +01: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 16:14:03 +01:00
install -D -m444 doc/mount.fuse3.8 $out/share/man/man8/mount.fuse3.8
2017-09-22 01:13:05 +01:00
'' else ''
sed -e 's@CONFIG_RPATH=/usr/share/gettext/config.rpath@CONFIG_RPATH=${gettext}/share/gettext/config.rpath@' -i makeconf.sh
./makeconf.sh
'');
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 01:13:05 +01:00
'');
enableParallelBuilding = true;
2018-05-11 20:48:38 +01:00
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Kernel module and library that allows filesystems to be implemented in user space";
2018-05-11 20:48:38 +01:00
platforms = platforms.linux;
maintainers = [ maintainers.primeos ];
};
}