summary refs log tree commit diff
path: root/pkgs/development/libraries/gvfs
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2014-10-17 13:48:51 +0400
committerAristid Breitkreuz <aristidb@gmail.com>2014-10-25 16:08:50 +0200
commitca3690d426dce3f519e84d0cdfdb6f297378720d (patch)
tree19b0a53493132ac550648b4d5b25db5703851d57 /pkgs/development/libraries/gvfs
parentf3d978be6511622b4500a42a18307f10c4db1ff0 (diff)
downloadnixpkgs-ca3690d426dce3f519e84d0cdfdb6f297378720d.tar
nixpkgs-ca3690d426dce3f519e84d0cdfdb6f297378720d.tar.gz
nixpkgs-ca3690d426dce3f519e84d0cdfdb6f297378720d.tar.bz2
nixpkgs-ca3690d426dce3f519e84d0cdfdb6f297378720d.tar.lz
nixpkgs-ca3690d426dce3f519e84d0cdfdb6f297378720d.tar.xz
nixpkgs-ca3690d426dce3f519e84d0cdfdb6f297378720d.tar.zst
nixpkgs-ca3690d426dce3f519e84d0cdfdb6f297378720d.zip
gvfs: support samba in lightweight version
Diffstat (limited to 'pkgs/development/libraries/gvfs')
-rw-r--r--pkgs/development/libraries/gvfs/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gvfs/default.nix b/pkgs/development/libraries/gvfs/default.nix
index 3f20147d0e9..ca947e8dd81 100644
--- a/pkgs/development/libraries/gvfs/default.nix
+++ b/pkgs/development/libraries/gvfs/default.nix
@@ -1,8 +1,8 @@
 { stdenv, fetchurl, pkgconfig, intltool, libtool
 , glib, dbus, udev, udisks2, libgcrypt
 , libgphoto2, avahi, libarchive, fuse, libcdio
-, libxml2, libxslt, docbook_xsl
-, lightWeight ? true, gnome, samba, libgnome_keyring, gconf, makeWrapper }:
+, libxml2, libxslt, docbook_xsl, samba
+, lightWeight ? true, gnome,libgnome_keyring, gconf, makeWrapper }:
 
 let
   ver_maj = "1.18";
@@ -21,10 +21,10 @@ stdenv.mkDerivation rec {
   buildInputs =
     [ makeWrapper glib dbus.libs udev udisks2 libgcrypt
       libgphoto2 avahi libarchive fuse libcdio
-      libxml2 libxslt docbook_xsl
+      libxml2 libxslt docbook_xsl samba
       # ToDo: a ligther version of libsoup to have FTP/HTTP support?
     ] ++ stdenv.lib.optionals (!lightWeight) (with gnome; [
-      gtk libsoup libgnome_keyring gconf samba
+      gtk libsoup libgnome_keyring gconf
       # ToDo: not working and probably useless until gnome3 from x-updates
     ]);