From e38349142e1208212c3f0814c69bf916d1b3796c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo?= Date: Fri, 23 Sep 2022 11:21:58 -0300 Subject: [PATCH] balsa: 2.6.1 -> 2.6.4 --- .../networking/mailreaders/balsa/default.nix | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/balsa/default.nix b/pkgs/applications/networking/mailreaders/balsa/default.nix index 2f9832d9193d..876a690de5a5 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; {