gnu: Add erlang-certifi.

* gnu/packages/erlang.scm (erlang-certifi): New variable.
This commit is contained in:
Hartmut Goebel 2020-05-23 22:48:26 +02:00
parent c1f065d9a5
commit 8184d7679a
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -225,6 +225,30 @@ (define-public emacs-erlang
files.")
(license license:asl2.0)))
(define-public erlang-certifi
(package
(name "erlang-certifi")
(version "2.7.0")
(source
(origin
(method hexpm-fetch)
(uri (hexpm-uri "certifi" version))
(sha256
(base32 "1ssiajvll5nilrnsg23ja3qz2fmvnbhy176c8i0gqj0h1alismn9"))))
(build-system rebar3-build-system)
(inputs
`(("parse-trans" ,erlang-parse-trans)))
(home-page "https://github.com/certifi/erlang-certifi/")
(synopsis "CA bundle adapted from Mozilla for Erlang")
(description "This Erlang library contains a CA bundle that you can
reference in your Erlang application. This is useful for systems that do not
have CA bundles that Erlang can find itself, or where a uniform set of CAs is
valuable.
This an Erlang specific port of certifi. The CA bundle is derived from
Mozilla's canonical set.")
(license license:bsd-3)))
(define-public erlang-cf
(package
(name "erlang-cf")