mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
47d3cf39e0
https://gitlab.gnome.org/GNOME/gvfs/-/compare/1.48.1...1.49.90 Switches http/dav module to libsoup3, which is lighter, allowing us to enable it everywhere. This means we now depend on both libsoup3 and libsoup2 but they are used by different programs (the latter, transitively via libgdata, by the google module) so it should be fine.
135 lines
2.4 KiB
Nix
135 lines
2.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, gettext
|
|
, dbus
|
|
, glib
|
|
, libgudev
|
|
, udisks2
|
|
, libgcrypt
|
|
, libcap
|
|
, polkit
|
|
, libgphoto2
|
|
, avahi
|
|
, libarchive
|
|
, fuse3
|
|
, libcdio
|
|
, libxml2
|
|
, libsoup_3
|
|
, libxslt
|
|
, docbook_xsl
|
|
, docbook_xml_dtd_42
|
|
, samba
|
|
, libmtp
|
|
, gnomeSupport ? false
|
|
, gnome
|
|
, gcr
|
|
, glib-networking
|
|
, gnome-online-accounts
|
|
, wrapGAppsHook
|
|
, libimobiledevice
|
|
, libbluray
|
|
, libcdio-paranoia
|
|
, libnfs
|
|
, openssh
|
|
, libsecret
|
|
, libgdata
|
|
, python3
|
|
, gsettings-desktop-schemas
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gvfs";
|
|
version = "1.49.90";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "Pj1lT6TWqASzppLPYHCdyop8HtlSMDakLYv3U5WLm2w=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# patchShebangs requires executable file
|
|
chmod +x meson_post_install.py
|
|
patchShebangs meson_post_install.py
|
|
patchShebangs test test-driver
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
python3
|
|
pkg-config
|
|
gettext
|
|
wrapGAppsHook
|
|
libxml2
|
|
libxslt
|
|
docbook_xsl
|
|
docbook_xml_dtd_42
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libgudev
|
|
udisks2
|
|
libgcrypt
|
|
dbus
|
|
libgphoto2
|
|
avahi
|
|
libarchive
|
|
fuse3
|
|
libcdio
|
|
samba
|
|
libmtp
|
|
libcap
|
|
polkit
|
|
libimobiledevice
|
|
libbluray
|
|
libcdio-paranoia
|
|
libnfs
|
|
openssh
|
|
gsettings-desktop-schemas
|
|
libsoup_3
|
|
] ++ lib.optionals gnomeSupport [
|
|
gcr
|
|
glib-networking # TLS support
|
|
gnome-online-accounts
|
|
libsecret
|
|
libgdata
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dsystemduserunitdir=${placeholder "out"}/lib/systemd/user"
|
|
"-Dtmpfilesdir=no"
|
|
] ++ lib.optionals (!gnomeSupport) [
|
|
"-Dgcr=false"
|
|
"-Dgoa=false"
|
|
"-Dkeyring=false"
|
|
"-Dgoogle=false"
|
|
] ++ lib.optionals (avahi == null) [
|
|
"-Ddnssd=false"
|
|
] ++ lib.optionals (samba == null) [
|
|
# Xfce don't want samba
|
|
"-Dsmb=false"
|
|
];
|
|
|
|
doCheck = false; # fails with "ModuleNotFoundError: No module named 'gi'"
|
|
doInstallCheck = doCheck;
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "odd-unstable";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Virtual Filesystem support library" + optionalString gnomeSupport " (full GNOME support)";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ ] ++ teams.gnome.members;
|
|
};
|
|
}
|