[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: opendht: Propagate gnutls.
From: |
guix-commits |
Subject: |
06/07: gnu: opendht: Propagate gnutls. |
Date: |
Mon, 3 Aug 2020 23:30:48 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 9f7dc7645173e49247da2bb1a0aeb3a04b101991
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Aug 1 23:39:48 2020 -0400
gnu: opendht: Propagate gnutls.
Propagate gnutls as it's included by the opendht/crypto.h header file.
* gnu/packages/networking.scm (opendht)[inputs]: Move gnutls...
[propagated-inputs]: ...to here. Move argon2 to inputs.
---
gnu/packages/networking.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 0a311ec..3a74c59 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -26,7 +26,7 @@
;;; Copyright © 2018, 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2018, 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
-;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2019, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2019 Vasile Dumitrascu <va511e@yahoo.com>
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2019 Timotej Lazar <timotej.lazar@araneo.si>
@@ -2926,20 +2926,20 @@ and targeted primarily for asynchronous processing of
HTTP-requests.")
;; Since 2.0, the gnu-build-system does not seem to work anymore, upstream
bug?
(build-system cmake-build-system)
(inputs
- `(("gnutls" ,gnutls)
+ `(("argon2" ,argon2)
("nettle" ,nettle)
("readline" ,readline)
("jsoncpp" ,jsoncpp)
- ("openssl" ,openssl)
+ ("openssl" ,openssl) ;required for the DHT proxy
("fmt" ,fmt)))
(propagated-inputs
- `(("argon2" ,argon2) ; TODO: Needed for the pkg-config .pc file to work?
+ `(("gnutls" ,gnutls) ;included in opendht/crypto.h
("msgpack" ,msgpack))) ;included in several installed headers
(native-inputs
`(("autoconf" ,autoconf)
- ("pkg-config" ,pkg-config)
- ("restinio" ,restinio)
("automake" ,automake)
+ ("pkg-config" ,pkg-config)
+ ("restinio" ,restinio) ;headers only library
("libtool" ,libtool)
("cppunit" ,cppunit)))
(arguments
- branch master updated (c0a4cde -> a5b44d9), guix-commits, 2020/08/03
- 02/07: gnu: pjproject: Fix build and enable tests., guix-commits, 2020/08/03
- 01/07: gnu: resample: Improve synopsis and description., guix-commits, 2020/08/03
- 03/07: gnu: pjproject: Fix problem in pkg-config file., guix-commits, 2020/08/03
- 04/07: gnu: pjproject: Include sensible configure flags from pjproject-jami., guix-commits, 2020/08/03
- 05/07: gnu: pjproject: Enable shared libraries., guix-commits, 2020/08/03
- 06/07: gnu: opendht: Propagate gnutls.,
guix-commits <=
- 07/07: gnu: pjproject-jami: Reuse more of the base pjproject., guix-commits, 2020/08/03