me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-fast-xml.

* gnu/packages/erlang-xyz.scm (erlang-fast-xml): New variable.

Change-Id: Id005f375b99f77b8e9e8e318b6c82d1f256a5fd2
Signed-off-by: Andrew Tropin <andrew@trop.in>
master
Igor Goryachev via Guix-patches via 2024-08-05 13:44:52 +03:00 committed by Andrew Tropin
parent d17f06a8e6
commit 0bf0353aad
No known key found for this signature in database
GPG Key ID: 2208D20958C1DEB0
1 changed files with 27 additions and 0 deletions

View File

@ -327,6 +327,33 @@ Erlang/Elixir.")
(home-page "https://hex.pm/packages/stun") (home-page "https://hex.pm/packages/stun")
(license license:asl2.0))) (license license:asl2.0)))
(define-public erlang-fast-xml
(package
(name "erlang-fast-xml")
(version "1.1.52")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "fast_xml" version))
(sha256
(base32 "1z8vrpnjx8y9qfqhhj4is8k4lzvjlnzhp6d62r8bdlh61qwr4lbr"))))
(build-system rebar-build-system)
(inputs (list erlang-p1-utils))
(native-inputs (list erlang-pc))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'set-environment
(lambda _
(setenv "HOME" "/tmp")
(setenv "CC" "gcc"))))))
(synopsis "Fast Expat-based Erlang/Elixir XML parsing library")
(description "This package provides fast Expat-based Erlang/Elixir XML
parsing library.")
(home-page "https://hex.pm/packages/fast_xml")
(license license:asl2.0)))
(define-public erlang-unicode-util-compat (define-public erlang-unicode-util-compat
(package (package
(name "erlang-unicode-util-compat") (name "erlang-unicode-util-compat")