~ruther/guix-local

bf2636df4f6e1685e753e424d17653563f351166 — Wallysson Oliveira 5 months ago f3d48e6
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 <csantosb@inventati.org>
1 files changed, 24 insertions(+), 20 deletions(-)

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