balsa: 2.6.1 -> 2.6.4

This commit is contained in:
José Romildo 2022-09-23 11:21:58 -03:00
parent be978f2532
commit e38349142e

View file

@ -1,4 +1,5 @@
{ lib, stdenv { lib
, stdenv
, fetchurl , fetchurl
, glib , glib
, gmime3 , gmime3
@ -6,7 +7,7 @@
, gobject-introspection , gobject-introspection
, gpgme , gpgme
, gtk3 , gtk3
, gtksourceview , gtksourceview4
, gtkspell3 , gtkspell3
, intltool , intltool
, libcanberra-gtk3 , libcanberra-gtk3
@ -16,17 +17,18 @@
, libsecret , libsecret
, openssl , openssl
, pkg-config , pkg-config
, sqlite
, webkitgtk , webkitgtk
, wrapGAppsHook , wrapGAppsHook
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "balsa"; pname = "balsa";
version = "2.6.1"; version = "2.6.4";
src = fetchurl { src = fetchurl {
url = "https://pawsa.fedorapeople.org/balsa/${pname}-${version}.tar.bz2"; url = "https://pawsa.fedorapeople.org/balsa/${pname}-${version}.tar.xz";
sha256 = "1xkxx801p7sbfkn0bh3cz85wra4xf1z1zhjqqc80z1z1nln7fhb4"; sha256 = "1hcgmjka2x2igdrmvzlfs12mv892kv4vzv5iy90kvcqxa625kymy";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -42,7 +44,7 @@ stdenv.mkDerivation rec {
gnutls gnutls
gpgme gpgme
gtk3 gtk3
gtksourceview gtksourceview4
gtkspell3 gtkspell3
libcanberra-gtk3 libcanberra-gtk3
libesmtp libesmtp
@ -50,6 +52,7 @@ stdenv.mkDerivation rec {
libnotify libnotify
libsecret libsecret
openssl openssl
sqlite
webkitgtk webkitgtk
]; ];
@ -57,14 +60,13 @@ stdenv.mkDerivation rec {
"--with-canberra" "--with-canberra"
"--with-gtksourceview" "--with-gtksourceview"
"--with-libsecret" "--with-libsecret"
"--with-spell-checker=gtkspell"
"--with-sqlite"
"--with-ssl" "--with-ssl"
"--with-unique" "--with-unique"
"--without-gnome" "--without-gnome"
"--with-spell-checker=gtkspell"
]; ];
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with lib; { meta = with lib; {