guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/27: gnu: Add go-github-com-certifi-gocertifi.


From: guix-commits
Subject: 08/27: gnu: Add go-github-com-certifi-gocertifi.
Date: Mon, 29 Jul 2019 14:57:19 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit ea22aa1fafe5d830080ffcacf8aedbe3e3ba1573
Author: Leo Famulari <address@hidden>
Date:   Tue Jul 16 11:35:31 2019 -0400

    gnu: Add go-github-com-certifi-gocertifi.
    
    * gnu/packages/tls.scm (go-github-com-certifi-gocertifi): New variable.
---
 gnu/packages/tls.scm | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index ac85b95..20dc692 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -4,7 +4,7 @@
 ;;; Copyright © 2014 Ian Denhardt <address@hidden>
 ;;; Copyright © 2013, 2015 Andreas Enge <address@hidden>
 ;;; Copyright © 2015 David Thompson <address@hidden>
-;;; Copyright © 2015, 2016, 2017, 2018 Leo Famulari <address@hidden>
+;;; Copyright © 2015, 2016, 2017, 2018, 2019 Leo Famulari <address@hidden>
 ;;; Copyright © 2016, 2017, 2019 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016, 2017, 2018 ng0 <address@hidden>
 ;;; Copyright © 2016 Hartmut Goebel <address@hidden>
@@ -33,8 +33,10 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix utils)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system go)
   #:use-module (guix build-system perl)
   #:use-module (guix build-system python)
   #:use-module (guix build-system cmake)
@@ -951,3 +953,27 @@ coding footprint.")
 ACME-server (currently only provided by Let's Encrypt) implemented as a
 relatively simple Bash script.")
     (license license:expat)))
+
+(define-public go-github-com-certifi-gocertifi
+  (let ((commit "d2eda712971317d7dd278bc2a52acda7e945f97e")
+        (revision "0"))
+    (package
+      (name "go-github-com-certifi-gocertifi")
+      (version (git-version "2018.01.18" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/certifi/gocertifi";)
+                       (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0f3v26xps7gadw4qfmh1kxbpgp0cgqdd61a257xnnvnd7ll6k8dh"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/certifi/gocertifi"))
+      (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.")
+      (home-page "https://certifi.io";)
+      (license license:mpl2.0))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]