[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54796] [PATCH v3 15/22] gnu: Add erlang-jsone.
From: |
Hartmut Goebel |
Subject: |
[bug#54796] [PATCH v3 15/22] gnu: Add erlang-jsone. |
Date: |
Fri, 8 Apr 2022 19:03:48 +0200 |
* gnu/packages/erlang.scm (erlang-jsone): New variable.
---
gnu/packages/erlang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 1a4ff36abb..91ce74f2d0 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -403,6 +403,30 @@ arguments using the GNU getopt syntax.")
specifications.")
(license license:asl2.0)))
+(define-public erlang-jsone
+ (package
+ (name "erlang-jsone")
+ (version "1.7.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "jsone" version))
+ (sha256
+ (base32 "1gaxiw76syjp3s9rygskm32y9799b917q752rw8bxj3bxq93g8x3"))))
+ (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"
+ (("\\{project_plugins, \\[covertool\\]\\}\\." _) "")))))))
+ (home-page "https://github.com/sile/jsone/")
+ (synopsis "Erlang JSON Library")
+ (description "An Erlang library for encoding and decoding JSON data.")
+ (license license:expat)))
+
(define-public erlang-parse-trans
(package
(name "erlang-parse-trans")
--
2.30.2
- [bug#54796] [PATCH v3 22/22] build-system: Add 'rebar3-build-system'., (continued)
[bug#54796] [PATCH v3 05/22] gnu: Add erlang-cth-readable., Hartmut Goebel, 2022/04/08
[bug#54796] [PATCH v3 10/22] gnu: Add erlang-parse-trans., Hartmut Goebel, 2022/04/08
[bug#54796] [PATCH v3 12/22] gnu: Add erlang-ssl-verify-fun., Hartmut Goebel, 2022/04/08
[bug#54796] [PATCH v3 18/22] gnu: Add rebar3., Hartmut Goebel, 2022/04/08
[bug#54796] [PATCH v3 15/22] gnu: Add erlang-jsone.,
Hartmut Goebel <=
[bug#54796] [PATCH v3 19/22] gnu: Add rebar3-raw-deps., Hartmut Goebel, 2022/04/08
[bug#54796] [PATCH v3 01/22] import: Add hex.pm importer., Hartmut Goebel, 2022/04/08