From e5dd14ca27d943bf488dc96b33ca72212c83922e Mon Sep 17 00:00:00 2001 From: Giacomo Leidi Date: Sat, 13 Sep 2025 13:22:33 +0200 Subject: [PATCH] gnu: Add elixir-process-tree. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/elixir-xyz.scm (elixir-process-tree): New variable. Change-Id: Iffd115d778c5a0e4c5e776debd2de7f0efd44afc Signed-off-by: Ludovic Courtès --- gnu/packages/elixir-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm index 24a83998fb8..1e8becdb18b 100644 --- a/gnu/packages/elixir-xyz.scm +++ b/gnu/packages/elixir-xyz.scm @@ -427,6 +427,24 @@ structures in Elixir.") (home-page "https://hexdocs.pm/pathex/") (license license:bsd-2))) +(define-public elixir-process-tree + (package + (name "elixir-process-tree") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (hexpm-uri "process_tree" version)) + (sha256 + (base32 "04z76m5vpbmhl4apsszy93g2a3iw02kg2dvhvbp1ld8l0nzydvk8")))) + (build-system mix-build-system) + (synopsis "Avoid global state in Elixir applications") + (description + "This package provides a module for avoiding global state in Elixir +applications.") + (home-page "https://hexdocs.pm/process_tree/") + (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