diff options
author | Adam Faiz <adam.faiz@disroot.org> | 2023-02-20 21:49:05 +0800 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-02-22 17:04:14 +0100 |
commit | 5ef168dfb7ea4217b5637d0cdd2ff7627fd3d74f (patch) | |
tree | d889736be745b5bba8bcce3a53b79a60512f5f8c | |
parent | 6d53351a6d13039eb076e584d13225e0158c5a08 (diff) | |
download | guix-5ef168dfb7ea4217b5637d0cdd2ff7627fd3d74f.tar.gz guix-5ef168dfb7ea4217b5637d0cdd2ff7627fd3d74f.zip |
gnu: gnunet-gtk: Update to 0.19.0.
* gnu/packages/gnunet.scm (gnunet-gtk): Update to 0.19.0.
[inputs]: Add libsodium.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/gnunet.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 902cd42a31..1fe8e95086 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -437,14 +437,14 @@ The following services are supported: (define-public gnunet-gtk (package (inherit gnunet) (name "gnunet-gtk") - (version "0.13.1") + (version "0.19.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gnunet/gnunet-gtk-" version ".tar.gz")) (sha256 (base32 - "1zdzgq16h77w6ybwg3lqjsjr965np6iqvncqvkbj07glqd4wss0j")))) + "0z2731l69vnfsa0cdsw8wh8g1d08wz15y5n0a58qjpf7baric01k")))) (arguments `(#:configure-flags (list "--with-libunique" @@ -458,6 +458,7 @@ The following services are supported: ("gtk+" ,gtk+) ("libextractor" ,libextractor) ("libgcrypt" ,libgcrypt) + ("libsodium" ,libsodium) ("libunique" ,libunique) ("qrencode" ,qrencode))) (native-inputs |