mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: emacs-dashboard: Update to 1.8.0.
* gnu/packages/emacs-xyz.scm (emacs-dashboard): Update to 1.8.0. [arguments]<#:phases>: Remove an unnecessary phase.
This commit is contained in:
parent
bbf87d7efd
commit
7bca9465f2
1 changed files with 21 additions and 33 deletions
|
@ -25280,40 +25280,28 @@ (define-public emacs-highlight-escape-sequences
|
|||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-dashboard
|
||||
(let ((version "1.7.0")
|
||||
(commit "a69cc103aebd957f967e431399681b6d9d6b52fc")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-dashboard")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rakanalh/emacs-dashboard")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1c6snnpc9rp6zhhdz411wyh2wn56yq2cdmxxqsp1ibvac8cbb1pq"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:include #~(cons* "\\.txt$" "\\.png$" %default-include)
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-dashboard-widgets
|
||||
;; This phase fixes compilation error.
|
||||
(lambda _
|
||||
(emacs-substitute-variables "dashboard-widgets.el"
|
||||
("dashboard-init-info"
|
||||
'(format "Loaded in %s" (emacs-init-time)))))))))
|
||||
(propagated-inputs
|
||||
(list emacs-page-break-lines))
|
||||
(home-page "https://github.com/rakanalh/emacs-dashboard")
|
||||
(synopsis "Startup screen extracted from Spacemacs")
|
||||
(description "This package provides an extensible Emacs dashboard, with
|
||||
(package
|
||||
(name "emacs-dashboard")
|
||||
(version "1.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rakanalh/emacs-dashboard")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1m39alr4vi22wr0yd22yi3qkdykwh8vmkdlbbd8qm9z1g7mvl382"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list #:include #~(cons* "\\.txt$" "\\.png$" %default-include)))
|
||||
(propagated-inputs
|
||||
(list emacs-page-break-lines))
|
||||
(home-page "https://github.com/rakanalh/emacs-dashboard")
|
||||
(synopsis "Startup screen extracted from Spacemacs")
|
||||
(description "This package provides an extensible Emacs dashboard, with
|
||||
sections for bookmarks, Projectile projects, Org Agenda and more.")
|
||||
(license license:gpl3+))))
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-slime-company
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue