~ruther/guix-local

0c8db85fe5c2271eaed8b512e0cc451da685127e — Cayetano Santos 2 months ago 40b14c1
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
Signed-off-by: Andreas Enge <andreas@enge.fr>
1 files changed, 24 insertions(+), 21 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +24 -21
@@ 21488,28 21488,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