diff options
author | Jack Hill <jackhill@jackhill.us> | 2022-05-16 17:47:22 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-01 23:28:19 +0200 |
commit | 099f74be910d1dbc4061d03332bd374a0b7f5a43 (patch) | |
tree | 20ec8ce745672486a09c58de32440980cc84adfd | |
parent | a5f20bebdcca920893e929a7da4ed7bd3406728f (diff) | |
download | guix-099f74be910d1dbc4061d03332bd374a0b7f5a43.tar.gz guix-099f74be910d1dbc4061d03332bd374a0b7f5a43.zip |
gnu: profanity: Update to 0.12.1.
* gnu/packages/messaging.scm (profanity): Update to 0.12.1.
[source]: Update uri.
[inputs]: Replace libmesode with libstrophe.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/messaging.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 8974e294cd..b04ce18ed3 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2143,16 +2143,16 @@ are both supported).") (define-public profanity (package (name "profanity") - (version "0.11.1") + (version "0.12.1") (source (origin (method url-fetch) (uri - (string-append "https://profanity-im.github.io/profanity-" + (string-append "https://profanity-im.github.io/tarballs/profanity-" version ".tar.gz")) (sha256 (base32 - "0idx0a5g077a57q462w01m0h8i4vyvabzlj87p8527wpqbv4s6vg")))) + "0vihmlzxr6n3y6v0vdzzxh5p1i09p0hx6sd1b2pnpcgkgcg4hi73")))) (build-system glib-or-gtk-build-system) (arguments `(#:configure-flags @@ -2180,10 +2180,10 @@ are both supported).") ("gpgme" ,gpgme) ("gtk+" ,gtk+-2) ("libgcrypt" ,libgcrypt) - ("libmesode" ,libmesode) ("libnotify" ,libnotify) ("libotr" ,libotr) ("libsignal-protocol-c" ,libsignal-protocol-c) + ("libstrophe" ,libstrophe) ;; ("libxss" ,libxss) ("ncurses" ,ncurses) ("openssl" ,openssl) |