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

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

Change-Id: I48254c0d41d377da7274cd91ec0967d62fc89848
This commit is contained in:
Sharlatan Hellseher 2024-09-01 21:12:29 +01:00
parent 593327e9f1
commit b6085ae28d
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5

View File

@ -3674,6 +3674,33 @@ part of @url{https://github.com/pion, Pion} WebRTC implementation.")
((#:import-path flags ''())
"github.com/pion/mdns/v2")))))
(define-public go-github-com-pion-rtcp
(package
(name "go-github-com-pion-rtcp")
(version "1.2.14")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pion/rtcp")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "00hfq0l17zq47slzfbrghgfc0v808hqiyaab3ni9kh1v7nmvp5ic"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pion/rtcp"))
(native-inputs
(list go-github-com-stretchr-testify))
(home-page "https://github.com/pion/rtcp")
(synopsis "Implementation of RTCP protocol in Golang")
(description
"Package rtcp implements encoding and decoding of RTCP packets according
to @url{https://www.rfc-editor.org/rfc/rfc3550, RFC 3550},
@url{https://www.rfc-editor.org/rfc/rfc5506, RFC 5506}.")
(license license:expat)))
(define-public go-github-com-pion-rtp
(package
(name "go-github-com-pion-rtp")