diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-05-23 23:22:46 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-10-07 22:35:29 +0200 |
commit | d2063c08ccec4193efbf86210a3231337a5c3984 (patch) | |
tree | 0e56f828447bef0b70cd9e35ea020db0388e045c | |
parent | e10cdd2c74649b3512f114ddbf1bf3b59c4bf9f3 (diff) | |
download | guix-d2063c08ccec4193efbf86210a3231337a5c3984.tar.gz guix-d2063c08ccec4193efbf86210a3231337a5c3984.zip |
gnu: Add erlang-eunit-formatters.
* gnu/packages/erlang.scm (erlang-eunit-formatters): New variable.
-rw-r--r-- | gnu/packages/erlang.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index ca2bfa1683..d2e4da87ed 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm @@ -344,6 +344,22 @@ outputs you want to be readable around all that noise they contain.") of reusable Erlang components.") (license license:expat))) +(define-public erlang-eunit-formatters + (package + (name "erlang-eunit-formatters") + (version "0.5.0") + (source + (origin + (method hexpm-fetch) + (uri (hexpm-uri "eunit_formatters" version)) + (sha256 + (base32 "18q3vb12799584kdb998298b6bfh686mzi5s7pkb7djrf93vgf5f")))) + (build-system rebar3-build-system) + (home-page "https://github.com/seancribbs/eunit_formatters") + (synopsis "Better output for eunit suites") + (description "This package provides a better output for Erlang eunits.") + (license license:asl2.0))) + (define-public erlang-getopt (package (name "erlang-getopt") |