[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54796] [PATCH v3 04/22] gnu: Add erlang-erlware-commons.
From: |
Hartmut Goebel |
Subject: |
[bug#54796] [PATCH v3 04/22] gnu: Add erlang-erlware-commons. |
Date: |
Fri, 8 Apr 2022 19:03:37 +0200 |
* gnu/packages/erlang.scm (erlang-erlware-commons): New variable.
---
gnu/packages/erlang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 95a18e6f18..34761a4d64 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -246,3 +246,30 @@ 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 url-fetch)
+ (uri (hexpm-uri "erlware_commons" version))
+ (sha256
+ (base32 "18qam9xdzi74wppb0cj4zc8161i0i8djr79z8662m6d276f2jz5m"))))
+ (build-system rebar3-build-system)
+ (propagated-inputs
+ (list erlang-cf))
+ (native-inputs
+ (list git)) ;; Required for tests
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'check-setup
+ (lambda _
+ (setenv "TERM" "xterm")))))) ; enable color in logs
+ (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)))
--
2.30.2
- [bug#54796] [PATCH v3 03/22] gnu: Add erlang-certifi., (continued)
- [bug#54796] [PATCH v3 14/22] gnu: Add erlang-edown., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 06/22] gnu: Add erlang-bbmustache., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 13/22] gnu: Add erlang-relx., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 16/22] gnu: Add erlang-proper., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 04/22] gnu: Add erlang-erlware-commons.,
Hartmut Goebel <=
- [bug#54796] [PATCH v3 07/22] gnu: Add erlang-getopt., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 09/22] gnu: Add erlang-providers., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 21/22] gnu: Add rebar3-proper., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 22/22] build-system: Add 'rebar3-build-system'., Hartmut Goebel, 2022/04/08