mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #11081 from khumba/claws-https-master
claws-mail: add glib_networking for fancy to load HTTPS content (for master)
This commit is contained in:
commit
589ab6b217
@ -1,7 +1,8 @@
|
||||
{ fetchurl, stdenv
|
||||
{ fetchurl, stdenv, wrapGAppsHook
|
||||
, curl, dbus, dbus_glib, enchant, gtk, gnutls, gnupg, gpgme, hicolor_icon_theme
|
||||
, libarchive, libcanberra, libetpan, libnotify, libsoup, libxml2, networkmanager
|
||||
, openldap , perl, pkgconfig, poppler, python, shared_mime_info, webkitgtk2
|
||||
, glib_networking, gsettings_desktop_schemas
|
||||
|
||||
# Build options
|
||||
# TODO: A flag to build the manual.
|
||||
@ -55,8 +56,8 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
buildInputs =
|
||||
[ curl dbus dbus_glib gtk gnutls hicolor_icon_theme
|
||||
libetpan perl pkgconfig python
|
||||
[ curl dbus dbus_glib gtk gnutls gsettings_desktop_schemas hicolor_icon_theme
|
||||
libetpan perl pkgconfig python wrapGAppsHook
|
||||
]
|
||||
++ optional enableSpellcheck enchant
|
||||
++ optionals (enablePgp || enablePluginSmime) [ gnupg gpgme ]
|
||||
@ -91,6 +92,9 @@ stdenv.mkDerivation {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
wrapPrefixVariables = [ "GIO_EXTRA_MODULES" ];
|
||||
GIO_EXTRA_MODULES = "${glib_networking}/lib/gio/modules";
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/applications
|
||||
cp claws-mail.desktop $out/share/applications
|
||||
|
@ -11121,6 +11121,7 @@ let
|
||||
cinelerra = callPackage ../applications/video/cinelerra { };
|
||||
|
||||
clawsMail = callPackage ../applications/networking/mailreaders/claws-mail {
|
||||
inherit (gnome3) gsettings_desktop_schemas;
|
||||
enableNetworkManager = config.networking.networkmanager.enable or false;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user