GNU bug report logs -
#62564
patches to fix age after update to v1.1.1
Previous Next
Full log
Message #86 received at 62564 <at> debbugs.gnu.org (full text, mbox):
* 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 778b8f7092..e33379e3ea 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -36,7 +36,7 @@
;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin <at> gmail.com>
;;; Copyright © 2022 muradm <mail <at> muradm.net>
;;; Copyright © 2022 Dhruvin Gandhi <contact <at> dhruvin.dev>
-;;; Copyright © 2022 Nicolas Graves <ngraves <at> ngraves.fr>
+;;; Copyright © 2022, 2023 Nicolas Graves <ngraves <at> ngraves.fr>
;;; Copyright © 2022 ( <paren <at> disroot.org>
;;; Copyright © 2023 Hilton Chain <hako <at> ultrarare.space>
;;; Copyright © 2023 Timo Wilken <guix <at> twilken.net>
@@ -3220,37 +3220,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
This bug report was last modified 2 years and 87 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.