mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add erlang-fast-yaml.
* gnu/packages/erlang-xyz.scm (erlang-fast-yaml): New variable. Change-Id: I81cb9dab74a81af9f6a901fa2674ac9f77318cd4 Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
0bf0353aad
commit
ddfc3cc6f7
1 changed files with 32 additions and 0 deletions
|
@ -20,6 +20,7 @@ (define-module (gnu packages erlang-xyz)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages erlang)
|
#:use-module (gnu packages erlang)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages serialization)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (guix build-system rebar)
|
#:use-module (guix build-system rebar)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -354,6 +355,37 @@ (define-public erlang-fast-xml
|
||||||
(home-page "https://hex.pm/packages/fast_xml")
|
(home-page "https://hex.pm/packages/fast_xml")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public erlang-fast-yaml
|
||||||
|
(package
|
||||||
|
(name "erlang-fast-yaml")
|
||||||
|
(version "1.0.37")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (hexpm-uri "fast_yaml" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0sd72nal5i6mbmicsmb494mr4g0gvs719lzp2hj1gqpp3dr6is4d"))))
|
||||||
|
(build-system rebar-build-system)
|
||||||
|
(inputs (list erlang-p1-utils))
|
||||||
|
(native-inputs (list erlang-pc libyaml))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ; some required files are absent
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'set-environment
|
||||||
|
(lambda _
|
||||||
|
(setenv "HOME" "/tmp")
|
||||||
|
(setenv "CC" "gcc")
|
||||||
|
(let ((openssl (assoc-ref %build-inputs "libyaml")))
|
||||||
|
(setenv "LDFLAGS" (string-append "-L" openssl "/lib"))
|
||||||
|
(setenv "CFLAGS" (string-append "-I" openssl "/include"))))))))
|
||||||
|
(synopsis "Fast YAML native library for Erlang/Elixir")
|
||||||
|
(description "This package provides fast YAML native library for
|
||||||
|
Erlang/Elixir.")
|
||||||
|
(home-page "https://hex.pm/packages/fast_yaml")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public erlang-unicode-util-compat
|
(define-public erlang-unicode-util-compat
|
||||||
(package
|
(package
|
||||||
(name "erlang-unicode-util-compat")
|
(name "erlang-unicode-util-compat")
|
||||||
|
|
Loading…
Reference in a new issue