mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add go-golang-org-x-sys-0.8
* gnu/packages/golang.scm (go-golang-org-x-sys-0.8): New variable. (go-github-com-quic-go-qtls-go1-20) [propagated-inputs]: Use "go-golang-org-x-sys-0.8". Change-Id: I5e79b909e1f670a20e66bf2a9a06009737c45028 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
3f8d50ecbd
commit
eea7dffd80
1 changed files with 20 additions and 1 deletions
|
@ -4092,6 +4092,24 @@ (define-public go-golang-org-x-sys
|
|||
(home-page "https://go.googlesource.com/sys")
|
||||
(license license:bsd-3))))
|
||||
|
||||
;; XXX: This version is required for "go-github-com-quic-go-qtls-go1-20".
|
||||
(define-public go-golang-org-x-sys-0.8
|
||||
(let ((commit "ca59edaa5a761e1d0ea91d6c07b063f85ef24f78")
|
||||
(revision "0"))
|
||||
(package
|
||||
(inherit go-golang-org-x-sys)
|
||||
(name "go-golang-org-x-sys")
|
||||
(version (git-version "0.8.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://go.googlesource.com/sys")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1p81niiin8dwyrjl2xsc95136w3vdw4kmj0w3mlh0vh5v134s4xq")))))))
|
||||
|
||||
(define-public go-golang-org-x-text
|
||||
(package
|
||||
(name "go-golang-org-x-text")
|
||||
|
@ -7711,7 +7729,8 @@ (define-public go-github-com-quic-go-qtls-go1-20
|
|||
(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))
|
||||
(propagated-inputs (list go-golang-org-x-crypto
|
||||
go-golang-org-x-sys-0.8))
|
||||
(synopsis "TLS 1.3 for QUIC")
|
||||
(description
|
||||
"Go standard library TLS 1.3 implementation, modified for QUIC. For
|
||||
|
|
Loading…
Reference in a new issue