guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 5e841c59e2f0bb9f089551c2d1456f118fd34d91
Author: Giacomo Leidi <[email protected]>
AuthorDate: Wed Sep 10 18:57:27 2025 +0200
gnu: Add erlang-zipper.
* gnu/packages/erlang.scm (erlang-zipper): New variable.
Change-Id: Ibbd81e94085a6ff5a33c2694fce7c29e7975a6d2
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/erlang.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 80c8260a0e..99787cb99a 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -309,6 +309,23 @@ Mozilla's canonical set.")
printing extending the io:format syntax to add colours.")
(license license:expat)))
+(define-public erlang-zipper
+ (package
+ (name "erlang-zipper")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "zipper" version))
+ (sha256
+ (base32 "0dbmxy5f86pmc85b1maassygnnf7n2bxapnbc2cc1wryx0xchi26"))))
+ (build-system rebar-build-system)
+ (synopsis "Generic Zipper implementation for Erlang")
+ (description "This package provides a generic Zipper implementation
+for Erlang.")
+ (home-page "https://hexdocs.pm/zipper/")
+ (license license:asl2.0)))
+
(define-public erlang-yamerl
(let ((commit "a24f448c0a8084f70b751dc38621047e56fb53cc")
(revision "0"))