me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-p1-acme.

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

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

View File

@ -108,6 +108,33 @@ Erlang and Elixir.")
(home-page "https://hex.pm/packages/pkix") (home-page "https://hex.pm/packages/pkix")
(license license:asl2.0))) (license license:asl2.0)))
(define-public erlang-p1-acme
(package
(name "erlang-p1-acme")
(version "1.0.23")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "p1_acme" version))
(sha256
(base32 "0nfxs3ldgbh7a8r7wxl0gw98r1v50jaj54c0nw8fl8ixdvr9dqcc"))))
(build-system rebar-build-system)
(inputs (list erlang-base64url erlang-idna erlang-jiffy erlang-jose
erlang-yconf))
(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"))))))
(synopsis "ACME client for Erlang")
(description "This package provides ACME client for Erlang.")
(home-page "https://hex.pm/packages/p1_acme")
(license license:asl2.0)))
(define-public erlang-p1-oauth2 (define-public erlang-p1-oauth2
(package (package
(name "erlang-p1-oauth2") (name "erlang-p1-oauth2")