mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add libjuice.
* gnu/packages/web.scm (libjuice): New variable. Change-Id: I5ad910e687cc20d356800e5c4ac02d5158f122f3 Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
2fb2ace79d
commit
afead2433e
1 changed files with 23 additions and 0 deletions
|
@ -2158,6 +2158,29 @@ modifying pages and incoming and outgoing headers, monitoring pages for
|
||||||
changes, and much more.")
|
changes, and much more.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public libjuice
|
||||||
|
(package
|
||||||
|
(name "libjuice")
|
||||||
|
(version "1.4.2")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/paullouisageneau/libjuice")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"035kqyp5bcawzkpqpjb1qjwqf0dp2gm9h2j9py5iiahcvfjwh70i"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments (list #:tests? #f)) ; requires internet access
|
||||||
|
(home-page "https://github.com/paullouisageneau/libjuice")
|
||||||
|
(synopsis "UDP Interactive Connectivity Establishment library")
|
||||||
|
(description "@code{libjuice} allows to open bidirectionnal User Datagram
|
||||||
|
Protocol (UDP) streams with Network Address Translator (NAT) traversal. It's a
|
||||||
|
simplified implementation of the Interactive Connectivity Establishment (ICE)
|
||||||
|
protocol, client-side and server-side, written in C without dependencies for
|
||||||
|
POSIX platforms.")
|
||||||
|
(license license:mpl2.0)))
|
||||||
(define-public liboauth
|
(define-public liboauth
|
||||||
(package
|
(package
|
||||||
(name "liboauth")
|
(name "liboauth")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue