[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54796] [PATCH v3 16/22] gnu: Add erlang-proper.
From: |
Hartmut Goebel |
Subject: |
[bug#54796] [PATCH v3 16/22] gnu: Add erlang-proper. |
Date: |
Fri, 8 Apr 2022 19:03:49 +0200 |
* gnu/packages/erlang.scm (erlang-proper): 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 91ce74f2d0..9a626a65a2 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -446,6 +446,33 @@ specifications.")
Erlang.")
(license license:asl2.0)))
+(define-public erlang-proper
+ (package
+ (name "erlang-proper")
+ (version "1.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "proper" version))
+ (sha256
+ (base32 "1fwcas4a9kz3w3z1jqdk9lw8822srfjk9lcpvbxkxlsv3115ha0q"))))
+ (build-system rebar3-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'disable-covertool
+ ;; no need to generate a coverage report
+ (lambda _
+ (substitute* "rebar.config"
+ (("\\{plugins, \\[covertool\\]\\}\\." _) "")))))))
+ (home-page "https://proper-testing.github.io/")
+ (synopsis "QuickCheck-inspired property-based testing tool for Erlang")
+ (description "PropEr is a tool for the automated, semi-random,
+property-based testing of Erlang programs. It is fully integrated with
+Erlang's type language, and can also be used for the model-based random
+testing of stateful systems.")
+ (license license:gpl3+)))
+
(define-public erlang-providers
(package
(name "erlang-providers")
--
2.30.2
- [bug#54796] [PATCH v3 03/22] gnu: Add erlang-certifi., (continued)
- [bug#54796] [PATCH v3 03/22] gnu: Add erlang-certifi., Hartmut Goebel, 2022/04/08
- [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 <=
- [bug#54796] [PATCH v3 04/22] gnu: Add erlang-erlware-commons., Hartmut Goebel, 2022/04/08
- [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