gnu: Add erlang-getopt.

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

View file

@ -326,3 +326,20 @@ (define-public erlang-erlware-commons
(description "Erlware Commons is an Erlware project focused on all aspects (description "Erlware Commons is an Erlware project focused on all aspects
of reusable Erlang components.") of reusable Erlang components.")
(license license:expat))) (license license:expat)))
(define-public erlang-getopt
(package
(name "erlang-getopt")
(version "1.0.2")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "getopt" version))
(sha256
(base32 "09pasi7ki1rivw9sl7xndj5qgjbdqvcscxk83yk85yr28gm9l0m0"))))
(build-system rebar-build-system)
(home-page "https://github.com/jcomellas/getopt")
(synopsis "Command-line options parser for Erlang")
(description "This package provides an Erlang module to parse command line
arguments using the GNU getopt syntax.")
(license license:bsd-3)))