gnu: go-golang-org-x-crypto: Update to 0.4.0.

* gnu/packages/golang.scm (go-golang-org-x-crypto): Update to 0.4.0.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Nicolas Graves 2023-04-22 18:13:38 +02:00 committed by Leo Famulari
parent df257ff468
commit bc3d1affb5
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -36,7 +36,7 @@
;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin@gmail.com> ;;; Copyright © 2022 Pier-Hugues Pellerin <phpellerin@gmail.com>
;;; Copyright © 2022 muradm <mail@muradm.net> ;;; Copyright © 2022 muradm <mail@muradm.net>
;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev> ;;; 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 © 2022 ( <paren@disroot.org>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space> ;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net> ;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
@ -3220,37 +3220,35 @@ (define-public go-golang-org-x-tools
(license license:bsd-3))) (license license:bsd-3)))
(define-public go-golang-org-x-crypto (define-public go-golang-org-x-crypto
(let ((commit "2aa609cf4a9d7d1126360de73b55b6002f9e052a") (package
(revision "5")) (name "go-golang-org-x-crypto")
(package (version "0.4.0")
(name "go-golang-org-x-crypto") (source (origin
(version (git-version "0.0.0" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://go.googlesource.com/crypto")
(uri (git-reference (commit (string-append "v" version))))
(url "https://go.googlesource.com/crypto") (file-name (string-append "go.googlesource.com-crypto-"
(commit commit))) version "-checkout"))
(file-name (string-append "go.googlesource.com-crypto-" (sha256
version "-checkout")) (base32
(sha256 "13i0yz4hvc4qdr438nmzilvl5ns73v3910bakcddny3jbzq72i2m"))))
(base32 (build-system go-build-system)
"1yvis6fqbsd7f356aqyi18f76vnwj3bry6mxqnkvshq4cwrf92il")))) (arguments
(build-system go-build-system) '(#:import-path "golang.org/x/crypto"
(arguments ;; Source-only package
'(#:import-path "golang.org/x/crypto" #:tests? #f
#:phases
(modify-phases %standard-phases
;; Source-only package ;; Source-only package
#:tests? #f (delete 'build))))
#:phases (propagated-inputs
(modify-phases %standard-phases (list go-golang-org-x-sys))
;; Source-only package (synopsis "Supplementary cryptographic libraries in Go")
(delete 'build)))) (description "This package provides supplementary cryptographic libraries
(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.") for the Go language.")
(home-page "https://go.googlesource.com/crypto/") (home-page "https://go.googlesource.com/crypto/")
(license license:bsd-3)))) (license license:bsd-3)))
(define-public govulncheck (define-public govulncheck
(package (package