guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/16: gnu: Add go-github-com-pion-dtls.


From: guix-commits
Subject: 10/16: gnu: Add go-github-com-pion-dtls.
Date: Thu, 16 May 2024 18:22:12 -0400 (EDT)

sharlatan pushed a commit to branch master
in repository guix.

commit 6f0efe0288689b7af380806d266698cd8d0ff6b9
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu May 16 22:44:39 2024 +0100

    gnu: Add go-github-com-pion-dtls.
    
    * gnu/packages/golang-web.scm (go-github-com-pion-dtls): New variable.
    
    Change-Id: I1931f8b5829d2fd7ce09f54ec00e4eaab5fb7579
---
 gnu/packages/golang-web.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 9b0edcc60c..f7984e1de0 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1588,6 +1588,38 @@ which produce colorized output using 
github.com/fatih/color.")
     (description "OpenTracing-Go is a Go implementation of the OpenTracing 
API.")
     (license license:asl2.0)))
 
+(define-public go-github-com-pion-dtls
+  (package
+    (name "go-github-com-pion-dtls")
+    (version "1.5.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pion/dtls";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0qc5dbgh31lilbd1lpmajj1fjzy4jx9iadzqgl9jd1ry9fj3ly1d"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      ;; XXX: TestClientCertificate: Client failed(x509: certificate relies on
+      ;; legacy Common Name field, use SANs instead)
+      #:tests? #f
+      #:import-path "github.com/pion/dtls"))
+    (propagated-inputs
+     (list go-github-com-pion-logging
+           go-github-com-pion-transport
+           go-golang-org-x-crypto))
+    (home-page "https://github.com/pion/dtls";)
+    (synopsis "DTLS 1.2 Server/Client implementation for Go")
+    (description
+     "This package provides a native
+@url{https://datatracker.ietf.org/doc/html/rfc6347, DTLS 1.2} implementation
+in Golang.")
+    (license license:expat)))
+
 (define-public go-github-com-pion-mdns
   (package
     (name "go-github-com-pion-mdns")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]