;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2023 Pierre-Henry Fröhring ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages erlang-xyz) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages base) #:use-module (gnu packages) #:use-module (guix build-system rebar) #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix hg-download) #:use-module (guix packages) #:use-module (guix utils) #:use-module (srfi srfi-1) #:use-module (guix git-download) #:use-module (gnu packages version-control) #:use-module (srfi srfi-26)) (define-public erlang-goldrush (package (name "erlang-goldrush") (version "0.1.9") (source (origin (method url-fetch) (uri (hexpm-uri name version)) (sha256 (base32 "1ssck5yr7rnrfwzm55pbyi1scgs1sl1xim75h5sj5czwrwl43jwr")))) (build-system rebar-build-system) (synopsis "Erlang event stream processor") (description "Erlang event stream processor") (home-page "https://hex.pm/packages/goldrush") (license license:isc))) (define-public erlang-lager (package (name "erlang-lager") (version "3.9.2") (source (origin (method url-fetch) (uri (hexpm-uri name version)) (sha256 (base32 "0a0c6kvc2jman62vrx2l3nx6xqn8s5l1glvf2mk7xjx8hyg4v43z")))) (build-system rebar-build-system) ;; XXX: tests fail. (arguments (list #:tests? #f)) (propagated-inputs (list erlang-goldrush)) (synopsis "Erlang logging framework") (description "Erlang logging framework") (home-page "https://hexdocs.pm/lager/") (license license:asl2.0))) (define-public erlang-unicode-util-compat (package (name "erlang-unicode-util-compat") (version "0.7.0") (source (origin (method url-fetch) (uri (hexpm-uri name version)) (sha256 (base32 "08952lw8cjdw8w171lv8wqbrxc4rcmb3jhkrdb7n06gngpbfdvi5")))) (build-system rebar-build-system) (synopsis "Unicode compatibility library for Erlang < 20") (description "Unicode compatibility library for Erlang < 20.") (home-page "https://hex.pm/packages/unicode_util_compat") (license license:asl2.0))) (define-public erlang-idna (package (name "erlang-idna") (version "6.1.1") (source (origin (method url-fetch) (uri (hexpm-uri name version)) (sha256 (base32 "1sjcjibl34sprpf1dgdmzfww24xlyy34lpj7mhcys4j4i6vnwdwj")))) (build-system rebar-build-system) (propagated-inputs (list erlang-unicode-util-compat)) (synopsis "Erlang Internationalized Domain Names in Applications (IDNA) protocol") (description "Library to register and look up IDNs in a way that does not require changes to the DNS itself. IDNA is only meant for processing domain names, not free text. See: RFC 5891.") (home-page "https://hexdocs.pm/idna/") (license license:expat))) ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar ;;; functionality or similar names. ;;;