[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54796] [PATCH v3 13/22] gnu: Add erlang-relx.
From: |
Hartmut Goebel |
Subject: |
[bug#54796] [PATCH v3 13/22] gnu: Add erlang-relx. |
Date: |
Fri, 8 Apr 2022 19:03:46 +0200 |
* gnu/packages/erlang.scm (erlang-relx): New variable.
---
gnu/packages/erlang.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index a7e63db0f3..626043a1b5 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -423,6 +423,28 @@ Erlang.")
(description "This package provides an Erlang providers library.")
(license license:asl2.0)))
+(define-public erlang-relx
+ (package
+ (name "erlang-relx")
+ (version "4.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "relx" version))
+ (sha256
+ (base32 "02gmfx1vxg9m3mq4njsqhs4972l4nb8m5p1pdcf64g09ccf17y1g"))))
+ (build-system rebar3-build-system)
+ (propagated-inputs
+ (list erlang-bbmustache))
+ (home-page "https://erlware.github.io/relx/")
+ (synopsis "Release assembler for Erlang/OTP Releases")
+ (description "Relx assembles releases for an Erlang/OTP release. Given a
+release specification and a list of directories in which to search for OTP
+applications it will generate a release output. That output depends heavily on
+what plugins available and what options are defined, but usually it is simply
+a well configured release directory.")
+ (license license:asl2.0)))
+
(define-public erlang-ssl-verify-fun
(package
(name "erlang-ssl-verify-fun")
--
2.30.2
- [bug#54796] [PATCH v3 00/22] Add importer for hex.pm and rebar3 build-system for Erlang, Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 03/22] gnu: Add erlang-certifi., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 14/22] gnu: Add erlang-edown., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 06/22] gnu: Add erlang-bbmustache., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 13/22] gnu: Add erlang-relx.,
Hartmut Goebel <=
- [bug#54796] [PATCH v3 16/22] gnu: Add erlang-proper., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 04/22] gnu: Add erlang-erlware-commons., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 07/22] gnu: Add erlang-getopt., Hartmut Goebel, 2022/04/08
- [bug#54796] [PATCH v3 09/22] gnu: Add erlang-providers., Hartmut Goebel, 2022/04/08