me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-pion-mdns.

* gnu/packages/golang-web.scm (go-github-com-pion-mdns): New variable.

Change-Id: Ic141fbaa01b40e60b443a672b5e54d315a114fff
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
master
Artyom V. Poptsov 2024-05-15 09:17:13 +03:00 committed by Sharlatan Hellseher
parent 78e7868bb5
commit f2b28d8334
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 35 additions and 0 deletions

View File

@ -1588,6 +1588,41 @@ which produce colorized output using github.com/fatih/color.")
(description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
(license license:asl2.0)))
(define-public go-github-com-pion-mdns
(package
(name "go-github-com-pion-mdns")
(version "2.0.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pion/mdns/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "03675hx82lx3c8akkxdbkch1z4dbq54r05jk6jgdyd7mrdh9k4lm"))))
(build-system go-build-system)
(arguments
(list
;; Tests are implemented in GitHub Actions and require aditional
;; packaging, see
;; <https://github.com/pion/.goassets/blob/master/.github/workflows/test.reusable.yml>.
#:tests? #f
#:go go-1.21
#:import-path "github.com/pion/mdns"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-pion-logging
go-github-com-pion-transport-v3
go-golang-org-x-net))
(home-page "https://github.com/pion/mdns/")
(synopsis "Pure Go implementation of Multicast DNS")
(description
"This package implements a mDNS (multicast DNS) used by
@url{https://github.com/pion, Pion}.")
(license license:expat)))
(define-public go-github-com-pion-rtp
(package
(name "go-github-com-pion-rtp")