me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-erlware-commons.

* gnu/packages/erlang.scm (erlang-erlware-commons): New variable.
master
Hartmut Goebel 2020-05-23 22:02:46 +02:00
parent 8184d7679a
commit 29666a1b92
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 23 additions and 0 deletions

View File

@ -265,3 +265,26 @@ Mozilla's canonical set.")
(description "This package provides a helper library for termial colour
printing extending the io:format syntax to add colours.")
(license license:expat)))
(define-public erlang-erlware-commons
(package
(name "erlang-erlware-commons")
(version "1.6.0")
(source
(origin
(method hexpm-fetch)
(uri (hexpm-uri "erlware_commons" version))
(sha256
(base32 "0xc3kiylingqrrnzhxm2j2n5gr3hxqgpibhi9nva9bwjs4n155fm"))))
(build-system rebar3-build-system)
(propagated-inputs
`(("erlang-cf" ,erlang-cf)))
(native-inputs
`(("git" ,git))) ;; Required for tests
(arguments
`(#:tests? #f)) ;; TODO: 1/219 tests fail - very simple one, though
(home-page "http://erlware.github.io/erlware_commons/")
(synopsis "Additional standard library for Erlang")
(description "Erlware Commons is an Erlware project focused on all aspects
of reusable Erlang components.")
(license license:expat)))