guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit 7c1c04141463efcedb96c9321589f6faf6c8c88d
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Dec 11 08:24:44 2025 +0100

    gnu: emacs-ht: Update to 2.4-0.1c49aad.
    
    * gnu/packages/emacs-xyz.scm (emacs-ht): Update to 2.4-0.1c49aad.
    
    Change-Id: If2331b186a819eca7285a26c04b92a292f79b5df
---
 gnu/packages/emacs-xyz.scm | 45 ++++++++++++++++++++++++---------------------
 1 file changed, 24 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ad33894538..01fa52732e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21368,28 +21368,31 @@ procedures for emacs-lisp-mode.")
       (license license:gpl3+))))
 
 (define-public emacs-ht
-  (package
-    (name "emacs-ht")
-    (version "2.3")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/Wilfred/ht.el";)
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "0can9v336lgnq0q2ha3js0565jzp3dlwwqxhcbx5swk5kp148f07"))))
-    (build-system emacs-build-system)
-    (propagated-inputs (list emacs-dash))
-    (native-inputs
-     (list emacs-ert-runner))
-    (home-page "https://github.com/Wilfred/ht.el";)
-    (synopsis "Hash table library for Emacs")
-    (description
-     "This package simplifies the use of hash tables in elisp.  It also
+  ;; Last release in 2021.
+  (let ((commit "1c49aad1c820c86f7ee35bf9fff8429502f60fef")
+        (revision "0"))
+    (package
+      (name "emacs-ht")
+      (version (git-version "2.4" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+                (url "https://github.com/Wilfred/ht.el";)
+                (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1vyk81xav1ghdb39fqi99yf6yvzsh6p007v7yhzk1bbqqffkvqdj"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-dash))
+      (native-inputs
+       (list emacs-ert-runner))
+      (home-page "https://github.com/Wilfred/ht.el";)
+      (synopsis "Hash table library for Emacs")
+      (description
+       "This package simplifies the use of hash tables in elisp.  It also
 provides functions to convert hash tables from and to alists and plists.")
-    (license license:gpl3+)))
+      (license license:gpl3+))))
 
 (define-public emacs-log4e
   (package

Reply via email to