mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 09:02:59 -05:00
gnu: balsa: Fix build.
* gnu/packages/mail.scm (balsa)[arguments]: Add #:phase to build with newer WebKitGTK. [inputs]: Change from GTKSOURCEVIEW to GTKSOURCEVIEW-4.
This commit is contained in:
parent
00ddf185e6
commit
34a70b1f86
1 changed files with 8 additions and 2 deletions
|
@ -3833,7 +3833,13 @@ (define-public balsa
|
||||||
"--with-gpgme"
|
"--with-gpgme"
|
||||||
"--with-sqlite"
|
"--with-sqlite"
|
||||||
"--with-compface"
|
"--with-compface"
|
||||||
"--with-ldap")))
|
"--with-ldap")
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'adjust-for-new-webkitgtk
|
||||||
|
(lambda _
|
||||||
|
(substitute* "configure"
|
||||||
|
(("webkit2gtk-4.0")
|
||||||
|
"webkit2gtk-4.1")))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list cyrus-sasl
|
(list cyrus-sasl
|
||||||
enchant
|
enchant
|
||||||
|
@ -3842,7 +3848,7 @@ (define-public balsa
|
||||||
gnutls
|
gnutls
|
||||||
gpgme
|
gpgme
|
||||||
gtk+
|
gtk+
|
||||||
gtksourceview
|
gtksourceview-4
|
||||||
gtkspell3
|
gtkspell3
|
||||||
libassuan ; in gpgme.pc Requires
|
libassuan ; in gpgme.pc Requires
|
||||||
libcanberra
|
libcanberra
|
||||||
|
|
Loading…
Reference in a new issue