me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-epam.

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

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

View File

@ -19,6 +19,7 @@
(define-module (gnu packages erlang-xyz)
#:use-module (gnu packages)
#:use-module (gnu packages erlang)
#:use-module (gnu packages linux)
#:use-module (gnu packages python)
#:use-module (gnu packages serialization)
#:use-module (gnu packages tls)
@ -403,6 +404,33 @@ Erlang/Elixir.")
(home-page "https://hex.pm/packages/yconf")
(license license:asl2.0)))
(define-public erlang-epam
(package
(name "erlang-epam")
(version "1.0.14")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "epam" version))
(sha256
(base32 "12frsirp8m0ajdb19xi1g86zghhgvld5cgw459n2m9w553kljd1g"))))
(build-system rebar-build-system)
(native-inputs (list erlang-pc linux-pam))
(arguments
(list
#:tests? #f ; no tests
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'set-environment
(lambda _
(setenv "HOME" "/tmp")
(setenv "CC" "gcc"))))))
(synopsis "Helper for PAM authentication support")
(description "This package provides epam helper for PAM authentication
support.")
(home-page "https://hex.pm/packages/epam")
(license license:asl2.0)))
(define-public erlang-unicode-util-compat
(package
(name "erlang-unicode-util-compat")