about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2018-12-04 09:08:02 +0100
committerGitHub <noreply@github.com>2018-12-04 09:08:02 +0100
commitaf4e0db35768a88010280ccc33044c40d4a9e8ef (patch)
treedad7f0a418aa4f9356369bf11c1f7c77339780d4 /pkgs/applications/networking
parentec95e55eed4a24f86baf007ccd6f4e1322082c0b (diff)
parent99512af9f5337e09f1bd9d88bc7ffe16c6affc00 (diff)
downloadnixlib-af4e0db35768a88010280ccc33044c40d4a9e8ef.tar
nixlib-af4e0db35768a88010280ccc33044c40d4a9e8ef.tar.gz
nixlib-af4e0db35768a88010280ccc33044c40d4a9e8ef.tar.bz2
nixlib-af4e0db35768a88010280ccc33044c40d4a9e8ef.tar.lz
nixlib-af4e0db35768a88010280ccc33044c40d4a9e8ef.tar.xz
nixlib-af4e0db35768a88010280ccc33044c40d4a9e8ef.tar.zst
nixlib-af4e0db35768a88010280ccc33044c40d4a9e8ef.zip
Merge pull request #51254 from hedning/fix-balsa-enchant
balsa: switch from enchant to gtkspell3
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/balsa/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mailreaders/balsa/default.nix b/pkgs/applications/networking/mailreaders/balsa/default.nix
index 571a48951477..8d9a685b444c 100644
--- a/pkgs/applications/networking/mailreaders/balsa/default.nix
+++ b/pkgs/applications/networking/mailreaders/balsa/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, intltool, glib, gtk3, gmime, gnutls,
-  webkitgtk, libesmtp, openssl, libnotify, enchant, gpgme,
+  webkitgtk, libesmtp, openssl, libnotify, gtkspell3, gpgme,
   libcanberra-gtk3, libsecret, gtksourceview, gobjectIntrospection,
   hicolor-icon-theme, wrapGAppsHook
 }:
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
     webkitgtk
     openssl
     libnotify
-    enchant
+    gtkspell3
     gpgme
     libcanberra-gtk3
     gtksourceview
@@ -45,6 +45,7 @@ stdenv.mkDerivation rec {
     "--with-ssl"
     "--with-unique"
     "--without-gnome"
+    "--with-spell-checker=gtkspell"
   ];
 
   NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";