1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: Add go-github-com-pion-srtp-v2.

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

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

View file

@ -3785,6 +3785,36 @@ Protocol,SCTP} as specified in
"Package sdp implements @acronym{Session Description Protocol,SDP}.")
(license license:expat)))
(define-public go-github-com-pion-srtp-v2
(package
(name "go-github-com-pion-srtp-v2")
(version "2.0.20")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pion/srtp")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1ijwx9mrc0ha8fam6y6xxih59dyr8hg9ly476kv6gfw564qfp7hk"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pion/srtp/v2"))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-pion-logging
go-github-com-pion-rtcp
go-github-com-pion-rtp
go-github-com-pion-transport-v2))
(home-page "https://github.com/pion/srtp")
(synopsis "Implementation of SRTP protocol in Golang")
(description
"Package srtp implements Secure Real-time Transport Protocol.")
(license license:expat)))
(define-public go-github-com-pion-stun
(package
(name "go-github-com-pion-stun")