me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-mqtree.

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

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

View File

@ -157,6 +157,32 @@ implementation.")
(home-page "https://hex.pm/packages/eimp")
(license license:asl2.0)))
(define-public erlang-mqtree
(package
(name "erlang-mqtree")
(version "1.0.17")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "mqtree" version))
(sha256
(base32 "18z23c1axn6y9799f0ydb0m29wxvq956b57bzk886ixwiz7vgs2z"))))
(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 "Index tree for MQTT topic filters")
(description "This package provides index tree for MQTT topic filters.")
(home-page "https://hex.pm/packages/mqtree")
(license license:asl2.0)))
(define-public erlang-unicode-util-compat
(package
(name "erlang-unicode-util-compat")