guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6150670ab6c3283a1164854eadc62ec1072ecd73
Author: Giacomo Leidi <[email protected]>
AuthorDate: Mon Sep 15 11:01:44 2025 +0200

    gnu: Add elixir-spitfire.
    
    * gnu/packages/elixir-xyz.scm (elixir-spitfire): New variable.
    
    Change-Id: Ia1751357b4aee4db9979dcfa662e21e1ce24bbe3
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/elixir-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm
index d293499967..c4334ae470 100644
--- a/gnu/packages/elixir-xyz.scm
+++ b/gnu/packages/elixir-xyz.scm
@@ -702,6 +702,23 @@ implementing utilities to work with Elixir source code.")
     (home-page "https://hexdocs.pm/sourceror/";)
     (license license:asl2.0)))
 
+(define-public elixir-spitfire
+  (package
+    (name "elixir-spitfire")
+    (version "0.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hexpm-uri "spitfire" version))
+       (sha256
+        (base32 "06yr860zhzxmzmljdpjq4c4n81951axl2kc1w6r430x3ai8dgvkf"))))
+    (build-system mix-build-system)
+    (synopsis "Error resilient parser for Elixir")
+    (description "This package provides @code{spitfire}, an error resilient
+parser for Elixir.")
+    (home-page "https://hexdocs.pm/spitfire/";)
+    (license license:expat)))
+
 ;;;
 ;;; 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

Reply via email to