mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
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:
parent
b6085ae28d
commit
547a66446b
1 changed files with 27 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue