guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b8ab03b9a853cb41bb6d32e6e16ed4de629322a2
Author: Giacomo Leidi <[email protected]>
AuthorDate: Sun Sep 21 20:59:27 2025 +0200
gnu: Add elixir-con-cache.
* gnu/packages/elixir-web.scm (elixir-con-cache): New variable.
Change-Id: I9b26822f527f4553be65187c5c5f4ecab070713d
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/elixir-web.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/elixir-web.scm b/gnu/packages/elixir-web.scm
index 4dbfe2f30e..550e52a88f 100644
--- a/gnu/packages/elixir-web.scm
+++ b/gnu/packages/elixir-web.scm
@@ -57,6 +57,27 @@ apps.")
(home-page "https://hexdocs.pm/bandit/")
(license license:expat)))
+(define-public elixir-con-cache
+ (package
+ (name "elixir-con-cache")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "con_cache" version))
+ (sha256
+ (base32 "05dfx20f6sncxcpmld7s3gc4jmibkyhn1g2vbg3n8r99xhdlvvqx"))))
+ (build-system mix-build-system)
+ (propagated-inputs (list erlang-telemetry))
+ (synopsis
+ "ETS based key-value storage")
+ (description
+ "This package provides @code{con_cache}, an ETS based key-value storage
+with support for row-level isolated writes, TTL auto-purge, and modification
+callbacks.")
+ (home-page "https://hexdocs.pm/con_cache/")
+ (license license:expat)))
+
;; This package lives here to avoid module level circular dependencies as it
;; depends on elixir-plug.
(define-public elixir-ecto-shorts