me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-esip.

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

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

View File

@ -415,6 +415,34 @@ for Erlang/Elixir.")
(home-page "https://hex.pm/packages/xmpp") (home-page "https://hex.pm/packages/xmpp")
(license license:asl2.0))) (license license:asl2.0)))
(define-public erlang-esip
(package
(name "erlang-esip")
(version "1.0.54")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "esip" version))
(sha256
(base32 "1vip49gbz1z6sgrab6021fdlqq7g7712d5znvanwsnbjkn0sz1w1"))))
(build-system rebar-build-system)
(inputs (list erlang-fast-tls erlang-p1-utils erlang-stun))
(native-inputs (list erlang-pc))
(arguments
(list
#:tests? #f ; no tests
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'set-environment
(lambda _
(setenv "HOME" "/tmp")
(setenv "CC" "gcc"))))))
(synopsis "SIP server component in Erlang")
(description "This package provides ProcessOne SIP server component in
Erlang.")
(home-page "https://hex.pm/packages/esip")
(license license:asl2.0)))
(define-public erlang-fast-yaml (define-public erlang-fast-yaml
(package (package
(name "erlang-fast-yaml") (name "erlang-fast-yaml")