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

48 lines
1.4 KiB
Nix
Raw Normal View History

2016-09-14 18:26:51 +00:00
{ stdenv, fetchFromGitHub, utillinux
,autoconf, automake, libtool, gettext }:
stdenv.mkDerivation rec {
2016-09-14 18:26:51 +00:00
name = "fuse-${version}";
version = "2.9.7";
2016-03-19 16:21:16 +00:00
#builder = ./builder.sh;
2016-09-14 18:26:51 +00:00
src = fetchFromGitHub {
owner = "libfuse";
repo = "libfuse";
rev = name;
sha256 = "1wyjjfb7p4jrkk15zryzv33096a5fmsdyr2p4b00dd819wnly2n2";
};
2016-03-19 16:21:16 +00:00
2016-09-14 18:26:51 +00:00
buildInputs = [ utillinux autoconf automake libtool gettext ];
2016-03-19 16:21:16 +00:00
inherit utillinux;
2016-03-19 16:21:16 +00: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=\"/var/setuid-wrappers\""
sed -e 's@/bin/@${utillinux}/bin/@g' -i lib/mount_util.c
2016-09-14 18:26:51 +00:00
sed -e 's@CONFIG_RPATH=/usr/share/gettext/config.rpath@CONFIG_RPATH=${gettext}/share/gettext/config.rpath@' -i makeconf.sh
./makeconf.sh
2016-03-19 16:21:16 +00:00
'';
enableParallelBuilding = true;
2014-01-28 17:11:00 +00:00
meta = with stdenv.lib; {
2016-09-14 18:26:51 +00:00
homepage = https://github.com/libfuse/libfuse;
description = "Kernel module and library that allows filesystems to be implemented in user space";
2014-01-28 17:11:00 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.mornfall ];
};
}