gnu: go-github-com-quic-go-qtls-go1-20: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-github-com-quic-go-qtls-go1-20): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: I28127466419cd798c926b62d160c6e512e5171bd
This commit is contained in:
parent
6dc9ac6461
commit
ea912634de
2 changed files with 28 additions and 27 deletions
|
@ -3,6 +3,7 @@
|
||||||
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
|
;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -255,6 +256,33 @@ the Go standard library's TLS 1.3 implementation.")
|
||||||
(description "Multihash implementation in Go.")
|
(description "Multihash implementation in Go.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public go-github-com-quic-go-qtls-go1-20
|
||||||
|
(package
|
||||||
|
(name "go-github-com-quic-go-qtls-go1-20")
|
||||||
|
(version "0.3.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/quic-go/qtls-go1-20")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0fl3yv1w8cygag3lav45vvzb4k9i72p92x13wcq0xn13wxirzirn"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/quic-go/qtls-go1-20"
|
||||||
|
#:go go-1.20))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-golang-org-x-crypto
|
||||||
|
go-golang-org-x-sys))
|
||||||
|
(home-page "https://github.com/quic-go/qtls-go1-20")
|
||||||
|
(synopsis "TLS 1.3 for QUIC")
|
||||||
|
(description "Go standard library TLS 1.3 implementation, modified for
|
||||||
|
QUIC. For Go 1.20.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-refraction-networking-utls
|
(define-public go-github-com-refraction-networking-utls
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-refraction-networking-utls")
|
(name "go-github-com-refraction-networking-utls")
|
||||||
|
|
|
@ -7088,33 +7088,6 @@ implementation of generics.")
|
||||||
(home-page "https://github.com/cheekybits/genny/")
|
(home-page "https://github.com/cheekybits/genny/")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-quic-go-qtls-go1-20
|
|
||||||
(package
|
|
||||||
(name "go-github-com-quic-go-qtls-go1-20")
|
|
||||||
(version "0.3.4")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/quic-go/qtls-go1-20")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0fl3yv1w8cygag3lav45vvzb4k9i72p92x13wcq0xn13wxirzirn"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:import-path "github.com/quic-go/qtls-go1-20"
|
|
||||||
#:go go-1.20))
|
|
||||||
(propagated-inputs (list go-golang-org-x-crypto
|
|
||||||
go-golang-org-x-sys))
|
|
||||||
(synopsis "TLS 1.3 for QUIC")
|
|
||||||
(description
|
|
||||||
"Go standard library TLS 1.3 implementation, modified for QUIC. For
|
|
||||||
Go 1.20.")
|
|
||||||
(home-page "https://github.com/quic-go/qtls-go1-20")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-quic-go-qpack
|
(define-public go-github-com-quic-go-qpack
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-quic-go-qpack")
|
(name "go-github-com-quic-go-qpack")
|
||||||
|
|
Reference in a new issue