guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4e825e1af9f93cbf47ad0201afe4bd83beb5ec9b
Author: Giacomo Leidi <[email protected]>
AuthorDate: Wed Sep 10 18:35:57 2025 +0200

    gnu: Add rebar3-ex-doc.
    
    * gnu/packages/erlang.scm (rebar3-ex-doc): New variable.
    
    Change-Id: I7c9dc2cc0a38fcee29e108d0083598f5ad7d15d8
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/erlang.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 0e05f7e079..db84a104b7 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2023 wrobell <[email protected]>
 ;;; Copyright © 2023 Tim Johann <[email protected]>
 ;;; Copyright © 2024, 2025 Igor Goryachev <[email protected]>
+;;; Copyright © 2025 Giacomo Leidi <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -736,6 +737,23 @@ of locations (git, hg, etc).")
 applications as a dependent libraries.")
     (license license:expat)))
 
+(define-public rebar3-ex-doc
+  (package
+    (name "rebar3-ex-doc")
+    (version "0.2.30")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hexpm-uri "rebar3_ex_doc" version))
+       (sha256
+        (base32 "0n415nq3dia63q9sywmkzm53j13pciw9ss3nd3bgbxr95r93ii3b"))))
+    (build-system rebar-build-system)
+    (synopsis "Rebar3 plugin for generating docs with ex_doc")
+    (description "This plugin provides support for generating docs with
+@code{ex_doc}.")
+    (home-page "https://hexdocs.pm/rebar3_ex_doc/";)
+    (license license:asl2.0)))
+
 (define-public rebar3-git-vsn
   (package
     (name "rebar3-git-vsn")

Reply via email to