1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

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

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

Change-Id: I93b7b0b45eeecd5f300d201142193965062c2198
This commit is contained in:
Sharlatan Hellseher 2025-02-27 16:38:19 +00:00
parent cb2d69a1b8
commit d61cf11cb9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7119,6 +7119,28 @@ Protocol,SCTP} as specified in
"Package srtp implements Secure Real-time Transport Protocol.")
(license license:expat)))
(define-public go-github-com-pion-srtp-v3
(package
(inherit go-github-com-pion-srtp-v2)
(name "go-github-com-pion-srtp-v3")
(version "3.0.4")
(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 "03343fsgrawfy9plsl7y5022ygjln3jvsn3im5xl1qwnc68rb1a2"))))
(arguments
(list
#:import-path "github.com/pion/srtp/v3"))
(propagated-inputs
(modify-inputs (package-propagated-inputs go-github-com-pion-srtp-v2)
(replace "go-github-com-pion-transport-v2"
go-github-com-pion-transport-v3)))))
(define-public go-github-com-pion-stun
(package
(name "go-github-com-pion-stun")