guix_mirror_bot pushed a commit to branch master
in repository guix.

commit bf2636df4f6e1685e753e424d17653563f351166
Author: Wallysson Oliveira <[email protected]>
AuthorDate: Wed Aug 27 22:00:23 2025 -0300

    gnu: emacs-all-the-icons-dired: Update to 2.0-0.e157f06.
    
    * gnu/packages/emacs-xyz.scm (emacs-all-the-icons-dired): Update to
    2.0-0.e157f06.
    [arguments]: Disable #:tests?.
    
    Merges guix/guix!5173
    
    Change-Id: Ic8aaa0538a12966cd4c6e1ed540e01ba8f8fbf3b
    Signed-off-by: Cayetano Santos <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 44 ++++++++++++++++++++++++--------------------
 1 file changed, 24 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ca34fdca71..fe1297b2fe 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -37854,27 +37854,31 @@ based on diff output.")
       (license license:gpl3+))))
 
 (define-public emacs-all-the-icons-dired
-  (package
-    (name "emacs-all-the-icons-dired")
-    (version "2.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/wyuenho/all-the-icons-dired";)
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "1shla7nyhml9m3g81p6yy8k4pdq289gb42900xzfp7zl4qvnm2vy"))))
-    (build-system emacs-build-system)
-    (propagated-inputs
-     (list emacs-all-the-icons))
-    (home-page "https://github.com/wyuenho/all-the-icons-dired";)
-    (synopsis "Show icons for each file in @code{dired-mode}")
-    (description "This package allows icons from @file{all-the-icons.el} to
+  ;; The latest release was on 14 June 2021.
+  (let ((commit "e157f0668f22ed586aebe0a2c0186ab07702986c")
+        (revision "0"))
+    (package
+      (name "emacs-all-the-icons-dired")
+      (version (git-version "2.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/wyuenho/all-the-icons-dired";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "11wkrfn4hcyparfimm6l1daysp1gnb0dj41f7j980axbpa3nzg6v"))))
+      (build-system emacs-build-system)
+      (arguments (list #:tests? #f))     ;no tests
+      (propagated-inputs
+       (list emacs-all-the-icons))
+      (home-page "https://github.com/wyuenho/all-the-icons-dired";)
+      (synopsis "Show icons for each file in @code{dired-mode}")
+      (description "This package allows icons from @file{all-the-icons.el} to
 be used in @code{dired-mode}.")
-    (license license:gpl3+)))
+      (license license:gpl3+))))
 
 (define-public emacs-all-the-icons-ibuffer
   (package

Reply via email to