guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 9dd18372248f388bacf12a4521b28954e10bc768
Author: Giacomo Leidi <[email protected]>
AuthorDate: Mon Sep 15 11:11:52 2025 +0200
gnu: Add elixir-traverse.
* gnu/packages/elixir-xyz.scm (elixir-traverse): New variable.
Change-Id: I850e706707f28a3b6df61953e117b1dce5c516a6
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/elixir-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm
index a3a773f9ed..0f5962bb20 100644
--- a/gnu/packages/elixir-xyz.scm
+++ b/gnu/packages/elixir-xyz.scm
@@ -799,6 +799,25 @@ formatted diff between two strings.")
(home-page "https://hexdocs.pm/text_diff/")
(license license:expat)))
+(define-public elixir-traverse
+ (package
+ (name "elixir-traverse")
+ (version "1.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "traverse" version))
+ (sha256
+ (base32 "0w8ww017nlfgqm0n73n0s72nk97xys4ayxh4sz93dbscjydfry8c"))))
+ (build-system mix-build-system)
+ (synopsis
+ "Walk arbitrary Elixir Datastructures in a functional way")
+ (description
+ "Traverse is a toolset to walk arbitrary Elixir Datastructures in a
+functional way.")
+ (home-page "https://hexdocs.pm/traverse/")
+ (license license:asl2.0)))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar