guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2551c8ed9f57ad7ff758fc005c21b52e4dc73c9e
Author: Simen Endsjø <[email protected]>
AuthorDate: Thu Sep 11 21:44:30 2025 +0200
gnu: Add sbcl-cl-hash-util.
* gnu/packages/lisp-xyz.scm (sbcl-cl-hash-util, ecl-cl-hash-util,
cl-cl-hash-util): New variables.
Change-Id: Id5f01e9348661e4a010adff0ce8185b06617f4e2
Signed-off-by: jgart <[email protected]>
---
gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index ee0426dc8e..4dc50e02f8 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -6744,6 +6744,42 @@ Common Lisp based on the hash array-mapped trie data
structure.")
(define-public ecl-cl-hamt
(sbcl-package->ecl-package sbcl-cl-hamt))
+(define-public sbcl-cl-hash-util
+ (let ((commit "7f88cb7579b2af8c21022554f46dddd6ce6a5fc2")
+ (revision "0"))
+ (package
+ (name "sbcl-cl-hash-util")
+ (version (git-version "0.1.7" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/orthecreedence/cl-hash-util")
+ (commit commit)))
+ (file-name (git-file-name name commit))
+ (sha256
+ (base32 "1xab7v2mav241rs8w68qmg485g4f75nrac3hjcnm0cb19ickbs1m"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ (list
+ #:asd-systems ''("cl-hash-util")))
+ (native-inputs
+ (list sbcl-fiveam))
+ (inputs
+ (list))
+ (home-page "https://github.com/orthecreedence/cl-hash-util")
+ (synopsis "Small hash utility library for Common Lisp")
+ (description "Very basic library for dealing with CL's hash tables. The
+idea was spawned through working with enough JSON APIs and config files,
causing
+a lot of headaches in the process.")
+ (license license:expat))))
+
+(define-public ecl-cl-hash-util
+ (sbcl-package->ecl-package sbcl-cl-hash-util))
+
+(define-public cl-hash-util
+ (sbcl-package->cl-source-package sbcl-cl-hash-util))
+
(define-public sbcl-cl-heap
(package
(name "sbcl-cl-heap")