mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 12:09:15 -05:00
gnu: emacs-ansi: Update to 0.4.1-1.a41d5cc.
* gnu/packages/emacs-xyz.scm (emacs-ansi): Update to 0.4.1-1.a41d5cc.
This commit is contained in:
parent
74dc65b834
commit
ce1c549290
1 changed files with 22 additions and 20 deletions
|
@ -11277,29 +11277,31 @@ (define-public emacs-evil-commentary
|
||||||
;; Tests for emacs-ansi have a circular dependency with ert-runner, and
|
;; Tests for emacs-ansi have a circular dependency with ert-runner, and
|
||||||
;; therefore cannot be run
|
;; therefore cannot be run
|
||||||
(define-public emacs-ansi
|
(define-public emacs-ansi
|
||||||
(package
|
(let ((commit "a41d5cc719297515d85bb5256980cd1204a71b88")
|
||||||
(name "emacs-ansi")
|
(revision "1"))
|
||||||
(version "0.4.1")
|
(package
|
||||||
(source
|
(name "emacs-ansi")
|
||||||
(origin
|
(version (git-version "0.4.1" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/rejeep/ansi.el")
|
(method git-fetch)
|
||||||
(commit (string-append "v" version))))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/rejeep/ansi.el")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32 "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system emacs-build-system)
|
(sha256
|
||||||
(propagated-inputs
|
(base32 "051v8dmji90chwbsyqsqry7h35mksal2j6rgw1kpmjsni86d79y1"))))
|
||||||
`(("emacs-dash" ,emacs-dash)
|
(build-system emacs-build-system)
|
||||||
("emacs-s" ,emacs-s)))
|
(propagated-inputs
|
||||||
(home-page "https://github.com/rejeep/ansi.el")
|
`(("emacs-dash" ,emacs-dash)
|
||||||
(synopsis "Convert strings to ANSI")
|
("emacs-s" ,emacs-s)))
|
||||||
(description "@code{emacs-ansi} defines functions that turns simple
|
(home-page "https://github.com/rejeep/ansi.el")
|
||||||
|
(synopsis "Convert strings to ANSI")
|
||||||
|
(description "@code{emacs-ansi} defines functions that turns simple
|
||||||
strings to ANSI strings. Turning a string into an ANSI string can be to add
|
strings to ANSI strings. Turning a string into an ANSI string can be to add
|
||||||
color to a text, add color in the background of a text or adding a style, such
|
color to a text, add color in the background of a text or adding a style, such
|
||||||
as bold, underscore or italic.")
|
as bold, underscore or italic.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
;; Tests for emacs-commander have a circular dependency with ert-runner, and
|
;; Tests for emacs-commander have a circular dependency with ert-runner, and
|
||||||
;; therefore cannot be run
|
;; therefore cannot be run
|
||||||
|
|
Loading…
Reference in a new issue