summary refs log tree commit diff
path: root/pkgs/development/libraries/gvfs
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2014-10-25 16:17:39 +0200
committerAristid Breitkreuz <aristidb@gmail.com>2014-10-25 16:17:39 +0200
commit42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4 (patch)
treefdd2d27b83db6d82a6a00e957ed988a4de865ebd /pkgs/development/libraries/gvfs
parentca3690d426dce3f519e84d0cdfdb6f297378720d (diff)
downloadnixpkgs-42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4.tar
nixpkgs-42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4.tar.gz
nixpkgs-42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4.tar.bz2
nixpkgs-42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4.tar.lz
nixpkgs-42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4.tar.xz
nixpkgs-42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4.tar.zst
nixpkgs-42aa2e25ec3e2a233fb2f29d053e05f8ea70e0c4.zip
gvfs: lightWeight -> !gnomeSupport
Diffstat (limited to 'pkgs/development/libraries/gvfs')
-rw-r--r--pkgs/development/libraries/gvfs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gvfs/default.nix b/pkgs/development/libraries/gvfs/default.nix
index ca947e8dd81..0cd8e19cee9 100644
--- a/pkgs/development/libraries/gvfs/default.nix
+++ b/pkgs/development/libraries/gvfs/default.nix
@@ -2,7 +2,7 @@
 , glib, dbus, udev, udisks2, libgcrypt
 , libgphoto2, avahi, libarchive, fuse, libcdio
 , libxml2, libxslt, docbook_xsl, samba
-, lightWeight ? true, gnome,libgnome_keyring, gconf, makeWrapper }:
+, gnomeSupport ? false, gnome,libgnome_keyring, gconf, makeWrapper }:
 
 let
   ver_maj = "1.18";
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
       libgphoto2 avahi libarchive fuse libcdio
       libxml2 libxslt docbook_xsl samba
       # ToDo: a ligther version of libsoup to have FTP/HTTP support?
-    ] ++ stdenv.lib.optionals (!lightWeight) (with gnome; [
+    ] ++ stdenv.lib.optionals gnomeSupport (with gnome; [
       gtk libsoup libgnome_keyring gconf
       # ToDo: not working and probably useless until gnome3 from x-updates
     ]);
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-    description = "Virtual Filesystem support library" + stdenv.lib.optionalString lightWeight " (light-weight)";
+    description = "Virtual Filesystem support library" + stdenv.lib.optionalString gnomeSupport " (full GNOME support)";
     platforms = stdenv.lib.platforms.linux;
   };
 }