From acaa0672ba4c222225c7efd487e895086968d16b Mon Sep 17 00:00:00 2001 From: Giacomo Leidi Date: Mon, 15 Sep 2025 10:59:37 +0200 Subject: [PATCH] gnu: Add elixir-sourceror. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/elixir-xyz.scm (elixir-sourceror): New variable. Change-Id: Ia98ac1a37d2b3916faf76c778dc8ab709f026f12 Signed-off-by: Ludovic Courtès --- 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 8a5bbfc4d44fb825335eadaa1ef6af000898b4ba..d2934999677632fd47a3eb8406ebfda7a993cfd5 100644 --- a/gnu/packages/elixir-xyz.scm +++ b/gnu/packages/elixir-xyz.scm @@ -683,6 +683,25 @@ human-readable.") (home-page "https://hexdocs.pm/sizeable/") (license license:expat))) +(define-public elixir-sourceror + (package + (name "elixir-sourceror") + (version "1.10.0") + (source + (origin + (method url-fetch) + (uri (hexpm-uri "sourceror" version)) + (sha256 + (base32 "1wdkqiszn0483g2wfp85s15mz08xzhic9zbfisfrqmh45v4xznr9")))) + (build-system mix-build-system) + (native-inputs + (list elixir-excoveralls)) + (synopsis "Utilities to work with Elixir source code") + (description "This package provides @code{elixir-sourceror}, a library +implementing utilities to work with Elixir source code.") + (home-page "https://hexdocs.pm/sourceror/") + (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