about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorSergey Mironov <ierton@gmail.com>2012-02-12 15:06:32 +0400
committerSergey Mironov <ierton@gmail.com>2012-08-15 01:10:40 +0400
commit7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08 (patch)
treefaee135730ea1b716e640961aace7a39e3adfcbd /pkgs/desktops
parentb229c3e09f7a967f161e15b290cd3874977bb0b8 (diff)
downloadnixlib-7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08.tar
nixlib-7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08.tar.gz
nixlib-7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08.tar.bz2
nixlib-7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08.tar.lz
nixlib-7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08.tar.xz
nixlib-7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08.tar.zst
nixlib-7ef3f9dd2a757e29f9a11ec95d9a5a4a196c5b08.zip
xfce-gvfs: add fuse to buildInputs
Passing fuse to gvfs results in building gvfs-fuse-daemon, which makes
it possible to access gvfs mounts via ~/.gvfs folder.
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/xfce-4.8/support/gvfs.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/desktops/xfce-4.8/support/gvfs.nix b/pkgs/desktops/xfce-4.8/support/gvfs.nix
index 6e50e6825dd6..33f7315a9d9b 100644
--- a/pkgs/desktops/xfce-4.8/support/gvfs.nix
+++ b/pkgs/desktops/xfce-4.8/support/gvfs.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, glib, dbus, intltool, udev, libgdu }:
+{ stdenv, fetchurl, pkgconfig, glib, dbus, intltool, udev, libgdu, fuse }:
 
 stdenv.mkDerivation rec {
   name = "gvfs-1.8.2";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "0895ac8f6d416e1b15433b6b6b68eb119c6e8b04fdb66db665d684355ef89345";
   };
 
-  buildInputs = [ pkgconfig glib dbus.libs intltool udev libgdu ];
+  buildInputs = [ pkgconfig glib dbus.libs intltool udev libgdu fuse ];
 
   meta = {
     description = "Virtual Filesystem support library (for Xfce)";