guix_mirror_bot pushed a commit to branch master
in repository guix.
commit af14001f98444d302743d7b32850e1599c618abd
Author: Giacomo Leidi <[email protected]>
AuthorDate: Wed Sep 10 18:59:39 2025 +0200
gnu: Add rebar3-hank.
* gnu/packages/erlang.scm (rebar3-hank): New variable.
Change-Id: I38cea1e12124550d6fc5d7fac12d0e847882af8e
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 cda3d767f2..e6b1e8fbad 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -838,6 +838,24 @@ applications as a dependent libraries.")
a git checkout.")
(license license:expat)))
+(define-public rebar3-hank
+ (package
+ (name "rebar3-hank")
+ (version "1.4.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "rebar3_hank" version))
+ (sha256
+ (base32 "1mkhl725q8arzj7lm0j204z1ghxpy6b936ysnbfifc8wy5a0s6vn"))))
+ (build-system rebar-build-system)
+ (inputs (list erlang-katana-code))
+ (synopsis "Rebar3 plugin for dead code cleaning")
+ (description
+ "This package provides a rebar3 plugin for dead code cleaning.")
+ (home-page "https://hexdocs.pm/rebar3_hank/")
+ (license license:expat)))
+
(define-public rebar3-proper
(package
(name "rebar3-proper")