me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-jiffy.

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

Change-Id: I44918d5f1c3ed158cc6c65bad05b684744ebecd9
Signed-off-by: Andrew Tropin <andrew@trop.in>
master
Igor Goryachev via Guix-patches via 2024-08-05 13:44:46 +03:00 committed by Andrew Tropin
parent 83905e1dcd
commit 1bfc5418f2
No known key found for this signature in database
GPG Key ID: 2208D20958C1DEB0
1 changed files with 27 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 python)
#:use-module (guix build-system rebar)
#:use-module (guix download)
#:use-module (guix gexp)
@ -62,6 +63,32 @@ Erlang and Elixir.")
(home-page "https://hex.pm/packages/jose")
(license license:expat)))
(define-public erlang-jiffy
(package
(name "erlang-jiffy")
(version "1.1.2")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "jiffy" version))
(sha256
(base32 "10gkbi48in96bzkv7f2cqw9119krpd40whcsn0yd7fr0lx1bqqdv"))))
(build-system rebar-build-system)
(native-inputs (list erlang-pc
python)) ; for tests
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'set-environment
(lambda _
(setenv "HOME" "/tmp")
(setenv "CC" "gcc"))))))
(synopsis "JSON Decoder/Encoder")
(description "This package provides JSON Decoder/Encoder for Erlang.")
(home-page "https://hex.pm/packages/jiffy")
(license license:expat)))
(define-public erlang-p1-utils
(package
(name "erlang-p1-utils")