mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: gnunet: Update to 0.19.3.
* gnu/packages/gnunet.scm (gnunet): Update to 0.19.3. [source]: Add snippet. [inputs]: Replace gnurl by curl. [native-inputs]: Add python-sphinx and python-sphinx-rtd-theme. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
0574aa8154
commit
6d53351a6d
1 changed files with 19 additions and 4 deletions
|
@ -12,6 +12,7 @@
|
||||||
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
|
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
|
||||||
|
;;; Copyright © 2023 Adam Faiz <adam.faiz@disroot.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -60,6 +61,7 @@ (define-module (gnu packages gnunet)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pulseaudio)
|
#:use-module (gnu packages pulseaudio)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages sphinx)
|
||||||
#:use-module (gnu packages sqlite)
|
#:use-module (gnu packages sqlite)
|
||||||
#:use-module (gnu packages text-editors)
|
#:use-module (gnu packages text-editors)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
|
@ -258,7 +260,7 @@ (define-public gnurl
|
||||||
(define-public gnunet
|
(define-public gnunet
|
||||||
(package
|
(package
|
||||||
(name "gnunet")
|
(name "gnunet")
|
||||||
(version "0.16.3")
|
(version "0.19.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -266,12 +268,19 @@ (define-public gnunet
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12n33r9nnkl5xwx8pwf571l2zvnvfllc8vm6mamrlyjk2cphaf9j"))))
|
"09bspbjl6cll8wcrl1vnb56jwp30pcrg1yyj6xy3i0fl2bzdbdw2"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
#~(begin
|
||||||
|
;; This is fixed in the upstream repository but the fix
|
||||||
|
;; has not been released.
|
||||||
|
(substitute* "src/gns/test_proxy.sh"
|
||||||
|
(("test_gnunet_proxy.conf") "test_gns_proxy.conf"))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list bluez
|
(list bluez
|
||||||
glpk
|
glpk
|
||||||
gnurl
|
curl
|
||||||
gnutls/dane
|
gnutls/dane
|
||||||
gstreamer
|
gstreamer
|
||||||
jansson
|
jansson
|
||||||
|
@ -291,7 +300,13 @@ (define-public gnunet
|
||||||
zbar
|
zbar
|
||||||
zlib))
|
zlib))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list curl openssl pkg-config python xxd
|
(list curl
|
||||||
|
openssl
|
||||||
|
pkg-config
|
||||||
|
python
|
||||||
|
python-sphinx
|
||||||
|
python-sphinx-rtd-theme
|
||||||
|
xxd
|
||||||
(@ (gnu packages base) which)))
|
(@ (gnu packages base) which)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:parallel-tests? #f ; Parallel tests aren't supported.
|
'(#:parallel-tests? #f ; Parallel tests aren't supported.
|
||||||
|
|
Loading…
Reference in a new issue