me
/
guix
Archived
1
0
Fork 0

gnu: go-github-com-certifi-gocertifi: Update to 2020.02.11.

* gnu/packages/tls.scm (go-github-com-certifi-gocertifi): Update to
2020.02.11.
master
Efraim Flashner 2020-05-25 22:20:22 +03:00
parent b5a68ec8b9
commit 1e07bd2aa7
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 22 deletions

View File

@ -5,7 +5,7 @@
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015 David Thompson <davet@gnu.org> ;;; Copyright © 2015 David Thompson <davet@gnu.org>
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Leo Famulari <leo@famulari.name> ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016, 2017, 2018 Nikita <nikita@n0.is> ;;; Copyright © 2016, 2017, 2018 Nikita <nikita@n0.is>
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
@ -1021,25 +1021,23 @@ relatively simple Bash script.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-certifi-gocertifi (define-public go-github-com-certifi-gocertifi
(let ((commit "a5e0173ced670013bfb649c7e806bc9529c986ec") (package
(revision "1")) (name "go-github-com-certifi-gocertifi")
(package (version "2020.02.11")
(name "go-github-com-certifi-gocertifi") (source (origin
(version (git-version "2018.01.18" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/certifi/gocertifi")
(uri (git-reference (commit version)))
(url "https://github.com/certifi/gocertifi") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "018bsy1vclsdk2kns9f37giabibg3kggk3vpj0yr3dv0k72gzybk"))))
(base32 (build-system go-build-system)
"1n9drccl3q1rr8wg3nf60slkf1lgsmz5ahifrglbdrc6har3rryj")))) (arguments
(build-system go-build-system) '(#:import-path "github.com/certifi/gocertifi"))
(arguments (synopsis "X.509 TLS root certificate bundle for Go")
'(#:import-path "github.com/certifi/gocertifi")) (description "This package is a Go language X.509 TLS root certificate bundle,
(synopsis "X.509 TLS root certificate bundle for Go")
(description "This package is a Go language X.509 TLS root certificate bundle,
derived from Mozilla's collection.") derived from Mozilla's collection.")
(home-page "https://certifi.io") (home-page "https://certifi.io")
(license license:mpl2.0)))) (license license:mpl2.0)))