[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#62564] [PATCH v3 02/14] gnu: go-golang-org-x-crypto: Update to 0.4.
From: |
Nicolas Graves |
Subject: |
[bug#62564] [PATCH v3 02/14] gnu: go-golang-org-x-crypto: Update to 0.4.0. |
Date: |
Fri, 31 Mar 2023 21:17:33 +0200 |
* gnu/packages/golang.scm (go-golang-org-x-crypto): Update to 0.4.0.
---
gnu/packages/golang.scm | 58 ++++++++++++++++++++---------------------
1 file changed, 28 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 18a80bf234..b25d8652a9 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -36,7 +36,7 @@
;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin@gmail.com>
;;; Copyright © 2022 muradm <mail@muradm.net>
;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev>
-;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
+;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2022 ( <paren@disroot.org>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
@@ -3174,37 +3174,35 @@ (define-public go-golang-org-x-tools
(license license:bsd-3)))
(define-public go-golang-org-x-crypto
- (let ((commit "2aa609cf4a9d7d1126360de73b55b6002f9e052a")
- (revision "5"))
- (package
- (name "go-golang-org-x-crypto")
- (version (git-version "0.0.0" revision commit))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://go.googlesource.com/crypto")
- (commit commit)))
- (file-name (string-append "go.googlesource.com-crypto-"
- version "-checkout"))
- (sha256
- (base32
- "1yvis6fqbsd7f356aqyi18f76vnwj3bry6mxqnkvshq4cwrf92il"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "golang.org/x/crypto"
+ (package
+ (name "go-golang-org-x-crypto")
+ (version "0.4.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://go.googlesource.com/crypto")
+ (commit (string-append "v" version))))
+ (file-name (string-append "go.googlesource.com-crypto-"
+ version "-checkout"))
+ (sha256
+ (base32
+ "13i0yz4hvc4qdr438nmzilvl5ns73v3910bakcddny3jbzq72i2m"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "golang.org/x/crypto"
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ (modify-phases %standard-phases
;; Source-only package
- #:tests? #f
- #:phases
- (modify-phases %standard-phases
- ;; Source-only package
- (delete 'build))))
- (propagated-inputs
- (list go-golang-org-x-sys))
- (synopsis "Supplementary cryptographic libraries in Go")
- (description "This package provides supplementary cryptographic libraries
+ (delete 'build))))
+ (propagated-inputs
+ (list go-golang-org-x-sys))
+ (synopsis "Supplementary cryptographic libraries in Go")
+ (description "This package provides supplementary cryptographic libraries
for the Go language.")
- (home-page "https://go.googlesource.com/crypto/")
- (license license:bsd-3))))
+ (home-page "https://go.googlesource.com/crypto/")
+ (license license:bsd-3)))
(define-public govulncheck
(package
--
2.39.2
- [bug#62564] patches to fix age after update to v1.1.1, Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH 1/2] gnu: go-golang-org-x-crypto: Update to 0.4.0., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v2 1/6] gnu: Remove go-github.com-howeyc-gopass., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v2 4/6] gnu: go-github-com-99designs-go-keyring: Update to 1.2.2., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v2 5/6] gnu: pixterm: Add input go-golang-go-x-term., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v2 2/6] gnu: go-golang-org-x-crypto: Update to 0.4.0., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v2 3/6] gnu: go-golang-org-x-term: Update to 0.3.0., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v2 6/6] gnu: curlie: Add input go-golang-x-term., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 01/14] gnu: Remove go-github.com-howeyc-gopass., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 02/14] gnu: go-golang-org-x-crypto: Update to 0.4.0.,
Nicolas Graves <=
- [bug#62564] [PATCH v3 03/14] gnu: go-golang-org-x-term: Update to 0.3.0., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 04/14] gnu: go-github-com-99designs-go-keyring: Update to 1.2.2., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 05/14] gnu: pixterm: Add input go-golang-go-x-term., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 06/14] gnu: curlie: Add input go-golang-x-term., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 07/14] gnu: Add go-github-com-aws-smithy-go., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 08/14] gnu: Add go-github-com-aws-aws-sdk-go-v2., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 10/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-iam., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 13/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-sts., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 14/14] gnu: aws-vault: Update to 6.6.2., Nicolas Graves, 2023/03/31
- [bug#62564] [PATCH v3 12/14] gnu: Add go-github-com-aws-aws-sdk-go-v2-service-ssooidc., Nicolas Graves, 2023/03/31