2018-03-14 20:48:56 +00:00
|
|
|
{ stdenv, meson, ninja, fetchurl, pkgconfig, gettext, gnome3
|
|
|
|
, glib, libgudev, udisks2, libgcrypt, libcap, polkit
|
|
|
|
, libgphoto2, avahi, libarchive, fuse, libcdio
|
2017-11-08 00:11:54 +00:00
|
|
|
, libxml2, libxslt, docbook_xsl, docbook_xml_dtd_42, samba, libmtp
|
2018-03-14 20:48:56 +00:00
|
|
|
, gnomeSupport ? false, gnome, makeWrapper
|
|
|
|
, libimobiledevice, libbluray, libcdio-paranoia, libnfs, openssh
|
2018-03-15 11:44:34 +00:00
|
|
|
, libsecret, libgdata
|
2018-04-02 10:10:40 +01:00
|
|
|
# Remove when switching back to meson
|
|
|
|
, autoreconfHook, lzma, bzip2
|
2018-03-14 20:48:56 +00:00
|
|
|
}:
|
2013-04-01 17:09:51 +01:00
|
|
|
|
2018-04-02 10:10:40 +01:00
|
|
|
# TODO: switch to meson when upstream fixes a non-deterministic build failure
|
|
|
|
# See https://bugzilla.gnome.org/show_bug.cgi?id=794549
|
|
|
|
|
|
|
|
# Meson specific things are commented out and annotated, so switching back
|
|
|
|
# should simply require deleting autotools specific things and adding back meson
|
|
|
|
# flags etc.
|
|
|
|
|
2013-11-17 19:20:13 +00:00
|
|
|
let
|
2018-03-03 03:09:19 +00:00
|
|
|
pname = "gvfs";
|
2018-04-13 22:52:39 +01:00
|
|
|
version = "1.36.1";
|
2013-11-17 19:20:13 +00:00
|
|
|
in
|
2013-04-01 17:09:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 03:09:19 +00:00
|
|
|
name = "${pname}-${version}";
|
2013-04-01 17:09:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-03 03:09:19 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-04-13 22:52:39 +01:00
|
|
|
sha256 = "09phj9kqk8lzcmkjfq7qmzpkj4xp1vg4mskv6d2s9j62hvrxyh1q";
|
2013-04-01 17:09:51 +01:00
|
|
|
};
|
|
|
|
|
2018-04-02 10:10:40 +01:00
|
|
|
# Uncomment when switching back to meson
|
|
|
|
# postPatch = ''
|
|
|
|
# chmod +x meson_post_install.py # patchShebangs requires executable file
|
|
|
|
# patchShebangs meson_post_install.py
|
|
|
|
# '';
|
2018-03-14 20:48:56 +00:00
|
|
|
|
2017-09-19 18:20:57 +01:00
|
|
|
nativeBuildInputs = [
|
2018-04-02 10:10:40 +01:00
|
|
|
autoreconfHook # Remove when switching to meson
|
|
|
|
# meson ninja
|
2018-03-14 20:48:56 +00:00
|
|
|
pkgconfig gettext makeWrapper
|
2017-11-08 00:11:54 +00:00
|
|
|
libxml2 libxslt docbook_xsl docbook_xml_dtd_42
|
2017-09-19 18:20:57 +01:00
|
|
|
];
|
2013-04-01 17:09:51 +01:00
|
|
|
|
|
|
|
buildInputs =
|
2018-03-14 20:48:56 +00:00
|
|
|
[ glib libgudev udisks2 libgcrypt
|
|
|
|
libgphoto2 avahi libarchive fuse libcdio
|
|
|
|
samba libmtp libcap polkit libimobiledevice libbluray
|
|
|
|
libcdio-paranoia libnfs openssh
|
2018-04-02 10:10:40 +01:00
|
|
|
# Remove when switching back to meson
|
|
|
|
lzma bzip2
|
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; [
|
2018-03-14 20:48:56 +00:00
|
|
|
libsoup gcr
|
2018-03-15 11:44:34 +00:00
|
|
|
gnome-online-accounts libsecret libgdata
|
2013-04-01 17:09:51 +01:00
|
|
|
]);
|
|
|
|
|
2018-04-02 10:10:40 +01:00
|
|
|
# Remove when switching back to meson
|
|
|
|
configureFlags = stdenv.lib.optional (!gnomeSupport) "--disable-gcr";
|
|
|
|
|
|
|
|
# Uncomment when switching back to meson
|
|
|
|
# mesonFlags = [
|
|
|
|
# "-Dgio_module_dir=lib/gio/modules"
|
|
|
|
# "-Dsystemduserunitdir=lib/systemd/user"
|
|
|
|
# "-Ddbus_service_dir=share/dbus-1/services"
|
|
|
|
# "-Dtmpfilesdir=no"
|
|
|
|
# ] ++ stdenv.lib.optionals (!gnomeSupport) [
|
|
|
|
# "-Dgcr=false" "-Dgoa=false" "-Dkeyring=false" "-Dhttp=false"
|
|
|
|
# "-Dgoogle=false"
|
|
|
|
# ] ++ stdenv.lib.optionals (samba == null) [
|
|
|
|
# # Xfce don't want samba
|
|
|
|
# "-Dsmb=false"
|
|
|
|
# ];
|
2016-10-13 18:29:16 +01:00
|
|
|
|
2013-04-01 17:09:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-04-05 14:51:42 +01:00
|
|
|
preFixup = ''
|
2017-07-24 05:24:11 +01:00
|
|
|
for f in $out/libexec/*; do
|
|
|
|
wrapProgram $f \
|
|
|
|
${stdenv.lib.optionalString gnomeSupport "--prefix GIO_EXTRA_MODULES : \"${stdenv.lib.getLib gnome.dconf}/lib/gio/modules\""} \
|
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
done
|
2013-04-05 12:26:27 +01:00
|
|
|
'';
|
|
|
|
|
2018-03-03 03:09:19 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-04-10 16:02:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Virtual Filesystem support library" + optionalString gnomeSupport " (full GNOME support)";
|
2018-03-03 03:09:19 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2015-04-10 16:02:57 +01:00
|
|
|
platforms = platforms.linux;
|
2018-03-03 03:09:19 +00:00
|
|
|
maintainers = [ maintainers.lethalman ] ++ gnome3.maintainers;
|
2013-04-01 17:09:51 +01:00
|
|
|
};
|
|
|
|
}
|