me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-eimp.

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

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

View File

@ -131,6 +131,32 @@ implementation.")
(home-page "https://hex.pm/packages/cache_tab")
(license license:asl2.0)))
(define-public erlang-eimp
(package
(name "erlang-eimp")
(version "1.0.23")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "eimp" version))
(sha256
(base32 "12k2df0mwq16rh77ziiahq9mjd9cy2jfdnsbzkj96a6b4c07hz4h"))))
(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 "Erlang/Elixir image converter")
(description "This package provides Erlang/Elixir image converter.")
(home-page "https://hex.pm/packages/eimp")
(license license:asl2.0)))
(define-public erlang-unicode-util-compat
(package
(name "erlang-unicode-util-compat")