2016-09-14 18:26:51 +00:00
|
|
|
{ stdenv, fetchFromGitHub, utillinux
|
|
|
|
,autoconf, automake, libtool, gettext }:
|
2005-11-01 12:11:12 +00:00
|
|
|
|
2009-12-08 11:38:34 +00:00
|
|
|
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";
|
2005-11-01 12:11:12 +00:00
|
|
|
};
|
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
|
|
|
|
2007-12-25 12:29:02 +00:00
|
|
|
inherit utillinux;
|
2007-12-24 13:27:07 +00:00
|
|
|
|
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;
|
2007-12-24 13:27:07 +00:00
|
|
|
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;
|
2014-09-13 11:51:39 +00:00
|
|
|
maintainers = [ maintainers.mornfall ];
|
2007-12-24 13:27:07 +00:00
|
|
|
};
|
2005-11-01 12:11:12 +00:00
|
|
|
}
|