gnu: Add go-github-com-pion-sdp-v3.

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

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

View file

@ -3758,6 +3758,33 @@ (define-public go-github-com-pion-sctp
@uref{https://rfc-editor.org/rfc/rfc9260.html,RFC 9260}.")
(license license:expat)))
(define-public go-github-com-pion-sdp-v3
(package
(name "go-github-com-pion-sdp-v3")
(version "3.0.9")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pion/sdp")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "08d3glli1n45ayc26qwaxm7k5knrf99x5nwkllmmhf29g8kwc89n"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pion/sdp/v3"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-pion-randutil))
(home-page "https://github.com/pion/sdp")
(synopsis "Implementation of the SDP protocol in Golang")
(description
"Package sdp implements @acronym{Session Description Protocol,SDP}.")
(license license:expat)))
(define-public go-github-com-pion-stun
(package
(name "go-github-com-pion-stun")