gnu: Add erlang-providers.

* gnu/packages/erlang.scm (erlang-providers): New variable.
This commit is contained in:
Hartmut Goebel 2020-05-23 22:06:02 +02:00
parent d2063c08cc
commit b2054a5da1
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF

View File

@ -376,3 +376,23 @@ of reusable Erlang components.")
(description "This package provides an Erlang module to parse command line (description "This package provides an Erlang module to parse command line
arguments using the GNU getopt syntax.") arguments using the GNU getopt syntax.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public erlang-providers
(package
(name "erlang-providers")
(version "1.9.0")
(source
(origin
(method hexpm-fetch)
(uri (hexpm-uri "providers" version))
(sha256
(base32 "0rq5zrqrsv2zgg84yfgh1faahnl4hkn92lja43iqihyiy181813z"))))
(propagated-inputs
`(("erlang-cf" ,erlang-cf)
("erlang-erlware-commons" ,erlang-erlware-commons)
("erlang-getopt" ,erlang-getopt)))
(build-system rebar3-build-system)
(home-page "https://github.com/tsloughter/providers")
(synopsis "Erlang providers library")
(description "This package provides an Erlang providers library.")
(license license:asl2.0)))