guix-commits
[Top][All Lists]
Advanced

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

03/27: gnu: Add go-github-com-marten-seemann-qtls.


From: guix-commits
Subject: 03/27: gnu: Add go-github-com-marten-seemann-qtls.
Date: Mon, 29 Jul 2019 14:57:18 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit a3b1dc49bb4ab68fce3af1c937545a707ae2d93b
Author: Leo Famulari <address@hidden>
Date:   Tue Jul 16 11:21:56 2019 -0400

    gnu: Add go-github-com-marten-seemann-qtls.
    
    * gnu/packages/golang.scm (go-github-com-marten-seemann-qtls): New variable.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 41d3826..302c413 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3506,3 +3506,29 @@ test.
 All locks are implemented with read-write mutexes.  To use them like a regular
 mutex, simply ignore the RLock/RUnlock functions.")
       (license license:unlicense))))
+
+(define-public go-github-com-marten-seemann-qtls
+  (package
+    (name "go-github-com-marten-seemann-qtls")
+    (version "0.2.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/marten-seemann/qtls";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0b9p7bwkm9hfg1mb565q4nw5k7xyks0z2xagz5fp95azy2psbnfg"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/marten-seemann/qtls"
+       ;; The test suite requires networking.
+       #:tests? #f))
+    (propagated-inputs
+     `(("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
+    (synopsis "TLS 1.3 with QUIC in Go")
+    (description "This package provides @code{qtls}, a QUIC-capable variant of
+the Go standard library's TLS 1.3 implementation.")
+    (home-page "https://github.com/marten-seemann/qtls";)
+    (license license:bsd-3)))



reply via email to

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