about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-09-26 22:57:02 +0200
committerGitHub <noreply@github.com>2022-09-26 22:57:02 +0200
commit453efce55eb305182ec708ce5d58b90e9b19510a (patch)
treeb44494e7bdf6e033d9796dc7805b7c2b7f923fb7 /pkgs/applications/networking/mailreaders
parent625d6cf1630622a5c2321c8f22ccb52e6f09930e (diff)
parente38349142e1208212c3f0814c69bf916d1b3796c (diff)
Merge pull request #192626 from romildo/upd.balsa
balsa: 2.6.1 -> 2.6.4
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/balsa/default.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/pkgs/applications/networking/mailreaders/balsa/default.nix b/pkgs/applications/networking/mailreaders/balsa/default.nix
index 2f9832d9193dd..876a690de5a50 100644
--- a/pkgs/applications/networking/mailreaders/balsa/default.nix
+++ b/pkgs/applications/networking/mailreaders/balsa/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
 , fetchurl
 , glib
 , gmime3
@@ -6,7 +7,7 @@
 , gobject-introspection
 , gpgme
 , gtk3
-, gtksourceview
+, gtksourceview4
 , gtkspell3
 , intltool
 , libcanberra-gtk3
@@ -16,17 +17,18 @@
 , libsecret
 , openssl
 , pkg-config
+, sqlite
 , webkitgtk
 , wrapGAppsHook
 }:
 
 stdenv.mkDerivation rec {
   pname = "balsa";
-  version = "2.6.1";
+  version = "2.6.4";
 
   src = fetchurl {
-    url = "https://pawsa.fedorapeople.org/balsa/${pname}-${version}.tar.bz2";
-    sha256 = "1xkxx801p7sbfkn0bh3cz85wra4xf1z1zhjqqc80z1z1nln7fhb4";
+    url = "https://pawsa.fedorapeople.org/balsa/${pname}-${version}.tar.xz";
+    sha256 = "1hcgmjka2x2igdrmvzlfs12mv892kv4vzv5iy90kvcqxa625kymy";
   };
 
   nativeBuildInputs = [
@@ -42,7 +44,7 @@ stdenv.mkDerivation rec {
     gnutls
     gpgme
     gtk3
-    gtksourceview
+    gtksourceview4
     gtkspell3
     libcanberra-gtk3
     libesmtp
@@ -50,6 +52,7 @@ stdenv.mkDerivation rec {
     libnotify
     libsecret
     openssl
+    sqlite
     webkitgtk
   ];
 
@@ -57,14 +60,13 @@ stdenv.mkDerivation rec {
     "--with-canberra"
     "--with-gtksourceview"
     "--with-libsecret"
+    "--with-spell-checker=gtkspell"
+    "--with-sqlite"
     "--with-ssl"
     "--with-unique"
     "--without-gnome"
-    "--with-spell-checker=gtkspell"
   ];
 
-  NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
-
   enableParallelBuilding = true;
 
   meta = with lib; {