2013-04-01 17:09:51 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, libtool
|
2015-09-11 11:22:27 +01:00
|
|
|
, glib, dbus, udev, libgudev, udisks2, libgcrypt
|
2013-04-01 17:09:51 +01:00
|
|
|
, libgphoto2, avahi, libarchive, fuse, libcdio
|
2014-11-03 12:15:39 +00:00
|
|
|
, libxml2, libxslt, docbook_xsl, samba, libmtp
|
2014-10-25 15:17:39 +01:00
|
|
|
, gnomeSupport ? false, gnome,libgnome_keyring, gconf, makeWrapper }:
|
2013-04-01 17:09:51 +01:00
|
|
|
|
2013-11-17 19:20:13 +00:00
|
|
|
let
|
2015-04-10 16:02:57 +01:00
|
|
|
ver_maj = "1.22";
|
2015-09-11 11:22:27 +01:00
|
|
|
version = "${ver_maj}.4";
|
2013-11-17 19:20:13 +00:00
|
|
|
in
|
2013-04-01 17:09:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-11-17 19:20:13 +00:00
|
|
|
name = "gvfs-${version}";
|
2013-04-01 17:09:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-11-17 19:20:13 +00:00
|
|
|
url = "mirror://gnome/sources/gvfs/${ver_maj}/${name}.tar.xz";
|
2015-09-11 11:22:27 +01:00
|
|
|
sha256 = "57e33faad35aba72be3822099856aca847f391626cf3ec734b42e64ba31f6484";
|
2013-04-01 17:09:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool libtool ];
|
|
|
|
|
|
|
|
buildInputs =
|
2015-09-11 11:22:27 +01:00
|
|
|
[ makeWrapper glib dbus.libs udev libgudev udisks2 libgcrypt
|
2013-04-01 17:09:51 +01:00
|
|
|
libgphoto2 avahi libarchive fuse libcdio
|
2014-11-03 12:15:39 +00:00
|
|
|
libxml2 libxslt docbook_xsl samba libmtp
|
2013-04-01 17:09:51 +01:00
|
|
|
# ToDo: a ligther version of libsoup to have FTP/HTTP support?
|
2014-10-25 15:17:39 +01:00
|
|
|
] ++ stdenv.lib.optionals gnomeSupport (with gnome; [
|
2014-10-17 10:48:51 +01:00
|
|
|
gtk libsoup libgnome_keyring gconf
|
2013-04-01 17:09:51 +01:00
|
|
|
# ToDo: not working and probably useless until gnome3 from x-updates
|
|
|
|
]);
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-04-05 12:26:27 +01:00
|
|
|
# ToDo: one probably should specify schemas for samba and others here
|
2014-04-05 14:51:42 +01:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram $out/libexec/gvfsd --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
2013-04-05 12:26:27 +01:00
|
|
|
'';
|
|
|
|
|
2015-04-10 16:02:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Virtual Filesystem support library" + optionalString gnomeSupport " (full GNOME support)";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.lethalman ];
|
2013-04-01 17:09:51 +01:00
|
|
|
};
|
|
|
|
}
|