mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: opendht: Use jsoncpp and restbed.
* gnu/packages/crypto.scm (opendht): Move definition to networking.scm. * gnu/packages/networking.scm (opendht)[inputs]: Add jsoncpp and restbed.
This commit is contained in:
parent
362fba83dd
commit
e0fa641380
2 changed files with 42 additions and 37 deletions
|
@ -166,43 +166,6 @@ (define-public signify
|
||||||
"See base64.c in the distribution for
|
"See base64.c in the distribution for
|
||||||
the license from IBM.")))))
|
the license from IBM.")))))
|
||||||
|
|
||||||
(define-public opendht
|
|
||||||
(package
|
|
||||||
(name "opendht")
|
|
||||||
(version "1.8.1")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/savoirfairelinux/opendht.git")
|
|
||||||
(commit version)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0vninb5mak27wigajslyvr05vq7wbrwqhbr4wzl2nmqcb20wmlq2"))))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(inputs
|
|
||||||
`(("gnutls" ,gnutls)
|
|
||||||
("nettle" ,nettle)
|
|
||||||
("readline" ,readline)
|
|
||||||
("argon2" ,argon2)))
|
|
||||||
(propagated-inputs
|
|
||||||
`(("msgpack" ,msgpack))) ;included in several installed headers
|
|
||||||
(native-inputs
|
|
||||||
`(("autoconf" ,autoconf)
|
|
||||||
("pkg-config" ,pkg-config)
|
|
||||||
("automake" ,automake)
|
|
||||||
("libtool" ,libtool)))
|
|
||||||
(arguments
|
|
||||||
`(#:configure-flags '("--disable-tools"
|
|
||||||
"--disable-python"
|
|
||||||
"--with-argon2")))
|
|
||||||
(home-page "https://github.com/savoirfairelinux/opendht/")
|
|
||||||
(synopsis "Distributed Hash Table (DHT) library")
|
|
||||||
(description "OpenDHT is a Distributed Hash Table (DHT) library. It may
|
|
||||||
be used to manage peer-to-peer network connections as needed for real time
|
|
||||||
communication.")
|
|
||||||
(license license:gpl3+)))
|
|
||||||
|
|
||||||
(define-public encfs
|
(define-public encfs
|
||||||
(package
|
(package
|
||||||
(name "encfs")
|
(name "encfs")
|
||||||
|
|
|
@ -82,6 +82,8 @@ (define-module (gnu packages networking)
|
||||||
#:use-module (gnu packages multiprecision)
|
#:use-module (gnu packages multiprecision)
|
||||||
#:use-module (gnu packages kerberos)
|
#:use-module (gnu packages kerberos)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
|
#:use-module (gnu packages nettle)
|
||||||
|
#:use-module (gnu packages password-utils)
|
||||||
#:use-module (gnu packages pcre)
|
#:use-module (gnu packages pcre)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages perl-check)
|
#:use-module (gnu packages perl-check)
|
||||||
|
@ -90,6 +92,7 @@ (define-module (gnu packages networking)
|
||||||
#:use-module (gnu packages python-web)
|
#:use-module (gnu packages python-web)
|
||||||
#:use-module (gnu packages qt)
|
#:use-module (gnu packages qt)
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
|
#:use-module (gnu packages serialization)
|
||||||
#:use-module (gnu packages ssh)
|
#:use-module (gnu packages ssh)
|
||||||
#:use-module (gnu packages textutils)
|
#:use-module (gnu packages textutils)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
|
@ -2324,3 +2327,42 @@ (define-public restbed
|
||||||
communication over HTTP.")
|
communication over HTTP.")
|
||||||
(home-page "https://github.com/Corvusoft/restbed")
|
(home-page "https://github.com/Corvusoft/restbed")
|
||||||
(license license:agpl3+))))
|
(license license:agpl3+))))
|
||||||
|
|
||||||
|
(define-public opendht
|
||||||
|
(package
|
||||||
|
(name "opendht")
|
||||||
|
(version "1.8.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/savoirfairelinux/opendht.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0vninb5mak27wigajslyvr05vq7wbrwqhbr4wzl2nmqcb20wmlq2"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("gnutls" ,gnutls)
|
||||||
|
("nettle" ,nettle)
|
||||||
|
("readline" ,readline)
|
||||||
|
("argon2" ,argon2)
|
||||||
|
("jsoncpp" ,jsoncpp)
|
||||||
|
("restbed" ,restbed)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("msgpack" ,msgpack))) ;included in several installed headers
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)))
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags '("--disable-tools"
|
||||||
|
"--disable-python"
|
||||||
|
"--with-argon2")))
|
||||||
|
(home-page "https://github.com/savoirfairelinux/opendht/")
|
||||||
|
(synopsis "Distributed Hash Table (DHT) library")
|
||||||
|
(description "OpenDHT is a Distributed Hash Table (DHT) library. It may
|
||||||
|
be used to manage peer-to-peer network connections as needed for real time
|
||||||
|
communication.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue