sharlatan pushed a commit to branch master
in repository guix.

commit 78e7868bb5276c21a58c0668fde01d462cf4bc31
Author: Artyom V. Poptsov <poptsov.art...@gmail.com>
AuthorDate: Wed May 15 09:17:11 2024 +0300

    gnu: Add go-github-com-pion-transport-v3.
    
    * gnu/packages/golang-web.scm (go-github-com-pion-transport-v3): New 
variable.
    
    Change-Id: I465da7f98a1f6c9d05c69fd5e3efd0a9de5a0b36
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 gnu/packages/golang-web.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 372a88f126..fd10ddc1d1 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1668,6 +1668,24 @@ throughout the @url{https://github.com/pion, Pion} 
modules.")
      (list
       #:import-path "github.com/pion/transport/v2"))))
 
+(define-public go-github-com-pion-transport-v3
+  (package
+    (inherit go-github-com-pion-transport)
+    (name "go-github-com-pion-transport-v3")
+    (version "3.0.2")
+    (source
+     (origin
+       (inherit (package-source go-github-com-pion-transport))
+       (uri (git-reference
+             (url "https://github.com/pion/transport/";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0j7ljkbyf2qd7daxg7d1rd6c92md64agi59b69g6jyqpz5jww998"))))
+    (arguments
+     (list
+      #:import-path "github.com/pion/transport/v3"))))
+
 (define-public go-github-com-pires-go-proxyproto
   (package
     (name "go-github-com-pires-go-proxyproto")

Reply via email to