about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2021-03-02 18:26:22 +0000
committerGitHub <noreply@github.com>2021-03-02 18:26:22 +0000
commite37e954d71350c1356ce381abcc7861391ff342b (patch)
tree1fbbca81c33f89b44e68f23afe96e2c54229f652 /pkgs/applications/networking/mailreaders
parent21c42afa837879883a73f81c28dade9e32144654 (diff)
claws-mail-gtk3: re-enable fancy plugin (#114871)
It was inadvertently disabled by #113663.
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/claws-mail/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
index a9cea58902a1e..6dc4ebea6792c 100644
--- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix
+++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
@@ -34,6 +34,7 @@
 , enablePluginBsfilter ? true
 , enablePluginClamd ? true
 , enablePluginDillo ? true
+, enablePluginFancy ? useGtk3, libsoup, webkitgtk
 , enablePluginFetchInfo ? true
 , enablePluginLibravatar ? enablePluginRavatar
 , enablePluginLitehtmlViewer ? true, gumbo
@@ -87,6 +88,7 @@ let
     { flags = [ "dbus" ]; enabled = enableDbus; deps = [ dbus dbus-glib ]; }
     { flags = [ "dillo-plugin" ]; enabled = enablePluginDillo; }
     { flags = [ "enchant" ]; enabled = enableEnchant; deps = [ enchant ]; }
+    { flags = [ "fancy-plugin" ]; enabled = enablePluginFancy; deps = [ libsoup webkitgtk ]; }
     { flags = [ "fetchinfo-plugin" ]; enabled = enablePluginFetchInfo; }
     { flags = [ "gnutls" ]; enabled = enableGnuTLS; deps = [ gnutls ]; }
     { flags = [ "ldap" ]; enabled = enableLdap; deps = [ openldap ]; }
@@ -153,7 +155,6 @@ in stdenv.mkDerivation rec {
       "--disable-jpilot"   # Missing jpilot library
 
       "--disable-gdata-plugin" # Complains about missing libgdata, even when provided
-      "--disable-fancy-plugin" # Missing libwebkit-1.0 library
     ] ++
     (map (feature: map (flag: strings.enableFeature feature.enabled flag) feature.flags) features);