From 6ae27a1838d93ca66cd620abe7929d39f196f3c5 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 16 May 2024 22:58:36 +0100 Subject: gnu: Add go-github-com-pion-stun. * gnu/packages/golang-web.scm (go-github-com-pion-stun): New variable. Change-Id: I30ef8a231fd980ea976f07d108bcd676446161f1 --- gnu/packages/golang-web.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 16869df0a9..738f6787d0 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -1709,6 +1709,41 @@ in Golang.") packetizer and depacketizer.") (license license:expat))) +(define-public go-github-com-pion-stun + (package + (name "go-github-com-pion-stun") + (version "0.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pion/stun") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0172fcm1xvzvy3d5lcpscayzpf3i5w4bpfydifdc9l4n2wslx0sm")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.21 + #:import-path "github.com/pion/stun")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-pion-dtls-v2 + go-github-com-pion-logging + go-github-com-pion-transport-v2)) + (home-page "https://github.com/pion/stun") + (synopsis "Go implementation of STUN") + (description + "Package @code{stun} implements Session Traversal Utilities for ++NAT (STUN) (@url{https://tools.ietf.org/html/rfc5389, RFC 5389}) protocol and ++@url{https://pkg.go.dev/github.com/pion/stun#Client, client} with no external ++dependencies and zero allocations in hot paths. Client ++@url{https://pkg.go.dev/github.com/pion/stun#WithRTO, supports} automatic ++request retransmissions.") + (license license:expat))) + (define-public go-github-com-pion-transport (package (name "go-github-com-pion-transport") -- cgit v1.2.3 b347f7f0ffd012e1'>root/config-daemon.ac
AgeCommit message (Expand)Author
2019-11-27daemon: GC remove-unused-links phase uses 'statx' when available....Ludovic Courtès
2019-11-13daemon: Don't include <linux/fs.h>....Ludovic Courtès
2019-09-08daemon: Run 'guix substitute' directly and assume a single substituter....Ludovic Courtès
2019-09-08daemon: Run 'guix offload' directly....Ludovic Courtès
2019-09-08daemon: Run 'guix perform-download' directly....Ludovic Courtès
2019-09-08daemon: Run 'guix authenticate' directly....Ludovic Courtès
2019-09-08daemon: Invoke 'guix gc --list-busy' instead of 'list-runtime-roots'....Ludovic Courtès
2019-05-01build: Change default substitute server to "ci.guix.gnu.org"....Ludovic Courtès
2018-12-04build: Default to https://ci.guix.info for substitutes....Ludovic Courtès
2018-11-14daemon: Install 'authenticate' script under LIBEXECDIR/guix....Ludovic Courtès
2018-09-06build: Remove -L flag when $LIBGCRYPT_LIBDIR is empty....Ludovic Courtès
2018-03-05build: Default to berlin.guixsd.org substitutes on aarch64....Ludovic Courtès
2018-03-05build: Always use https substitute URLs....Ludovic Courtès
2018-02-27build: Really build 'guix offload' when possible....Ludovic Courtès
2018-02-26build: Require Guile >= 2.0.13....Ludovic Courtès