gnu: emacs-magit-todos: Update to 1.1.

* gnu/packages/emacs.scm (emacs-magit-todos): Update to 1.1.
This commit is contained in:
Pierre Neidhardt 2018-09-11 23:34:31 +02:00
parent 475e16578f
commit ac9e307740
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 26 additions and 28 deletions

View File

@ -11741,37 +11741,35 @@ buffers other modes on the TODO list).
(license license:gpl3)))) (license license:gpl3))))
(define-public emacs-magit-todos (define-public emacs-magit-todos
;; TODO: <1.1 is broken with Guix. Switch to 1.1 when out. (package
(let ((commit "966642762788d335dc2d3667d230a36ede65972e")) (name "emacs-magit-todos")
(package (version "1.1")
(name "emacs-magit-todos") (source
(version (git-version "1.0.4" "1" commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/alphapapa/magit-todos")
(uri (git-reference (commit version)))
(url "https://github.com/alphapapa/magit-todos") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "1mvzbxshr6zjdim3jd368ar1hy5l7n22i03cpvzdmrw83kkwdyhd"))))
(base32 (build-system emacs-build-system)
"0nxarip8sf0446xfgrcfsjm4vbsg50klxjbr4i6h09a3lri03gyp")))) (propagated-inputs
(build-system emacs-build-system) `(("emacs-async" ,emacs-async)
(propagated-inputs ("emacs-dash" ,emacs-dash)
`(("emacs-async" ,emacs-async) ("emacs-f" ,emacs-f)
("emacs-dash" ,emacs-dash) ("emacs-hl-todo" ,emacs-hl-todo)
("emacs-f" ,emacs-f) ("magit" ,magit)
("emacs-hl-todo" ,emacs-hl-todo) ("emacs-pcre2el" ,emacs-pcre2el)
("magit" ,magit) ("emacs-s" ,emacs-s)))
("emacs-pcre2el" ,emacs-pcre2el) (home-page "https://github.com/alphapapa/magit-todos")
("emacs-s" ,emacs-s))) (synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
(home-page "https://github.com/alphapapa/magit-todos") (description "This package displays keyword entries from source code
(synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
(description "This package displays keyword entries from source code
comments and Org files in the Magit status buffer. Activating an item jumps comments and Org files in the Magit status buffer. Activating an item jumps
to it in its file. By default, it uses keywords from @code{hl-todo}, minus a to it in its file. By default, it uses keywords from @code{hl-todo}, minus a
few (like NOTE).") few (like NOTE).")
(license license:gpl3)))) (license license:gpl3)))
(define-public emacs-git-annex (define-public emacs-git-annex
;; Unreleased version has a fontification fix. ;; Unreleased version has a fontification fix.