nixpkgs/pkgs/development/libraries/gvfs/default.nix

77 lines
2.4 KiB
Nix
Raw Normal View History

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
, 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
}:
let
2018-03-03 03:09:19 +00:00
pname = "gvfs";
2018-03-13 01:03:18 +00:00
version = "1.36.0";
in
stdenv.mkDerivation rec {
2018-03-03 03:09:19 +00:00
name = "${pname}-${version}";
src = fetchurl {
2018-03-03 03:09:19 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2018-03-13 01:03:18 +00:00
sha256 = "1fsn6aa9a68cfbna9s00l1ry4ym1fr7ii2f45hzj2fipxfpqihwy";
};
2018-03-14 20:48:56 +00:00
postPatch = ''
chmod +x meson_post_install.py # patchShebangs requires executable file
patchShebangs meson_post_install.py
'';
2017-09-19 17:20:57 +00:00
nativeBuildInputs = [
2018-03-14 20:48:56 +00:00
meson ninja
pkgconfig gettext makeWrapper
libxml2 libxslt docbook_xsl docbook_xml_dtd_42
2017-09-19 17:20:57 +00: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
# ToDo: a ligther version of libsoup to have FTP/HTTP support?
2014-10-25 14:17:39 +00:00
] ++ stdenv.lib.optionals gnomeSupport (with gnome; [
2018-03-14 20:48:56 +00:00
libsoup gcr
gnome-online-accounts
# ToDo: not working and probably useless until gnome3 from x-updates
]);
2018-03-14 20:48:56 +00:00
mesonFlags = [
"-Dgio_module_dir=${placeholder "out"}/lib/gio/modules"
"-Dsystemduserunitdir=${placeholder "out"}/lib/systemd/user"
"-Ddbus_service_dir=${placeholder "out"}/share/dbus-1/services"
"-Dtmpfilesdir=no"
] ++ stdenv.lib.optionals (!gnomeSupport) [
"-Dgcr=false" "-Dgoa=false" "-Dkeyring=false" "-Dhttp=false"
"-Dgoogle=false"
];
enableParallelBuilding = true;
preFixup = ''
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
'';
2018-03-03 03:09:19 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
2015-04-10 15:02:57 +00: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 15:02:57 +00:00
platforms = platforms.linux;
2018-03-03 03:09:19 +00:00
maintainers = [ maintainers.lethalman ] ++ gnome3.maintainers;
};
}