all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Igor Goryachev via Guix-patches via <guix-patches@gnu.org>
To: 72474@debbugs.gnu.org
Cc: Igor Goryachev <igor@goryachev.org>, Andrew Tropin <andrew@trop.in>
Subject: [bug#72474] [PATCH 05/30] gnu: Add erlang-luerl.
Date: Mon,  5 Aug 2024 13:44:38 +0300	[thread overview]
Message-ID: <b81e691c47db2062ad0326f31ccc6ca8e60a3cdd.1722851684.git.igor@goryachev.org> (raw)
In-Reply-To: <cover.1722851684.git.igor@goryachev.org>

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

Change-Id: I6864986aab58ee970a8313a81dd4b045711365e9
---
 gnu/packages/erlang-xyz.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/erlang-xyz.scm b/gnu/packages/erlang-xyz.scm
index 862d9462a2..1e5d87e833 100644
--- a/gnu/packages/erlang-xyz.scm
+++ b/gnu/packages/erlang-xyz.scm
@@ -27,6 +27,22 @@ (define-module (gnu packages erlang-xyz)
   #:use-module (guix packages)
   #:use-module (guix utils))
 
+(define-public erlang-luerl
+  (package
+    (name "erlang-luerl")
+    (version "1.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hexpm-uri "luerl" version))
+       (sha256
+        (base32 "0paj3gr0kn8v9g6wmdnz1f16q0iy1pb83zbqsalzbw2g17vd9bww"))))
+    (build-system rebar-build-system)
+    (synopsis "Implementation of Lua on Erlang")
+    (description "This package provides implementation of Lua on Erlang.")
+    (home-page "https://hex.pm/packages/luerl")
+    (license license:asl2.0)))
+
 (define-public erlang-jose
   (package
     (name "erlang-jose")
-- 
2.45.2





  parent reply	other threads:[~2024-08-05 10:47 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-05 10:36 [bug#72474] [PATCH 00/30] Add ejabberd package Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 01/30] gnu: Add erlang-base64url Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 02/30] gnu: Add erlang-jose Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 03/30] gnu: Add erlang-pc Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 04/30] gnu: Add erlang-provider-asn1 Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` Igor Goryachev via Guix-patches via [this message]
2024-08-05 10:44 ` [bug#72474] [PATCH 06/30] gnu: Add erlang-p1-utils Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 07/30] gnu: Add erlang-unicode-util-compat Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 08/30] gnu: Add erlang-idna Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 09/30] gnu: Add erlang-stringprep Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 10/30] gnu: Add erlang-cache-tab Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 11/30] gnu: Add erlang-eimp Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 12/30] gnu: Add erlang-mqtree Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 13/30] gnu: Add erlang-jiffy Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 14/30] gnu: Add erlang-p1-oauth2 Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 15/30] gnu: Add erlang-pkix Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 16/30] gnu: Add erlang-ezlib Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 17/30] gnu: Add erlang-fast-tls Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 18/30] gnu: Add erlang-stun Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 19/30] gnu: Add erlang-fast-xml Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 20/30] gnu: Add erlang-fast-yaml Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 21/30] gnu: Add erlang-yconf Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 22/30] gnu: Add erlang-epam Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 23/30] gnu: Add erlang-p1-acme Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 24/30] gnu: Add erlang-xmpp Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 25/30] gnu: Add erlang-esip Igor Goryachev via Guix-patches via
2024-08-05 10:44 ` [bug#72474] [PATCH 26/30] gnu: Add erlang-p1-mysql Igor Goryachev via Guix-patches via
2024-08-05 10:45 ` [bug#72474] [PATCH 27/30] gnu: Add erlang-p1-pgsql Igor Goryachev via Guix-patches via
2024-08-05 10:45 ` [bug#72474] [PATCH 28/30] gnu: Add erlang-sqlite3 Igor Goryachev via Guix-patches via
2024-08-05 10:45 ` [bug#72474] [PATCH 29/30] gnu: Add erlang-eredis Igor Goryachev via Guix-patches via
2024-08-05 10:45 ` [bug#72474] [PATCH 30/30] gnu: Add ejabberd Igor Goryachev via Guix-patches via
2024-08-05 13:46 ` [bug#72474] [PATCH 00/30] Add ejabberd package Andrew Tropin via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b81e691c47db2062ad0326f31ccc6ca8e60a3cdd.1722851684.git.igor@goryachev.org \
    --to=guix-patches@gnu.org \
    --cc=72474@debbugs.gnu.org \
    --cc=andrew@trop.in \
    --cc=igor@goryachev.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.