diff options
author | Marius Bakke <[email protected]> | 2022-12-28 01:02:47 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2022-12-28 01:02:47 +0100 |
commit | ec0fbb471dfc6f72796da9ebafbb0630daa91267 (patch) | |
tree | 3b42f3d0a6470d85fbb8421179634bb278883e4e /gnu/packages/erlang.scm | |
parent | f5ef7d34e4deecb80aff585c108b0a2ab1f33ce4 (diff) | |
parent | 0cb8f7125b19264b01962c1249c3df4c5ce85aa9 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/erlang.scm')
-rw-r--r-- | gnu/packages/erlang.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index ede46f3a1c..cfada5a619 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2020-2022 Hartmut Goebel <[email protected]> ;;; Copyright © 2021 Oskar Köök <[email protected]> ;;; Copyright © 2021 Cees de Groot <[email protected]> +;;; Copyright © 2022 jgart <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -280,6 +281,28 @@ Mozilla's canonical set.") printing extending the io:format syntax to add colours.") (license license:expat))) +(define-public erlang-yamerl + (package + (name "erlang-yamerl") + (version "0.10.0") + (source + (origin + (method git-fetch) + (uri (git-reference + ;; There are no tests included on Hex. + (url "https://github.com/yakaz/yamerl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0if8abgmispcfk7zhd0a5dndzwzbsmqrbyrm5shk375r2dbbwak6")))) + (build-system rebar-build-system) + (synopsis "YAML and JSON parser in pure Erlang") + (description + "Erlang application to parse YAML 1.1 and YAML 1.2 documents, as well as +JSON documents.") + (home-page "https://hexdocs.pm/yamerl/") + (license license:bsd-2))) + (define-public erlang-covertool (package (name "erlang-covertool") @@ -499,6 +522,23 @@ Erlang's type language, and can also be used for the model-based random testing of stateful systems.") (license license:gpl3+))) +(define-public erlang-jsx + (package + (name "erlang-jsx") + (version "3.1.0") + (source (origin + (method url-fetch) + (uri (hexpm-uri "jsx" version)) + (sha256 + (base32 + "1wr7jkxm6nlgvd52xhniav64xr9rml2ngb35rwjwqlqvq7ywhp0c")))) + (build-system rebar-build-system) + (synopsis "Streaming, evented JSON parsing toolkit") + (description + "An Erlang application for consuming, producing and manipulating json.") + (home-page "https://github.com/talentdeficit/jsx") + (license license:expat))) + (define-public erlang-providers (package (name "erlang-providers") |