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 6cec25f232
commit 0e6f4572c1
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF

View File

@ -359,3 +359,21 @@ 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 url-fetch)
(uri (hexpm-uri "providers" version))
(sha256
(base32 "05y0kz3xgx77hzn1l05byaisvmk8bgds7c22hrh0a5ba81sfi1yj"))))
(build-system rebar-build-system)
(propagated-inputs
(list erlang-erlware-commons erlang-getopt))
(home-page "https://github.com/tsloughter/providers")
(synopsis "Erlang providers library")
(description "This package provides an Erlang providers library.")
(license license:asl2.0)))