mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: emacs-autothemer: Update to 0.2.18.
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.18.
This commit is contained in:
parent
0007326faa
commit
5da3942b2f
1 changed files with 28 additions and 27 deletions
|
@ -3968,35 +3968,36 @@ (define-public emacs-auctex
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-autothemer
|
(define-public emacs-autothemer
|
||||||
(package
|
(let ((commit "8f72afc6dba5ad7cc3a201a084fd20571f945d2e")) ;version bump
|
||||||
(name "emacs-autothemer")
|
(package
|
||||||
(version "0.2.17")
|
(name "emacs-autothemer")
|
||||||
(source
|
(version "0.2.18")
|
||||||
(origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/sebastiansturm/autothemer")
|
(uri (git-reference
|
||||||
(commit version)))
|
(url "https://github.com/sebastiansturm/autothemer")
|
||||||
(file-name (git-file-name name version))
|
(commit commit)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"13lj0igrsdycsr8ldv2hilj2x79c888g4lx2ixqn7w29lw6cb44g"))))
|
(base32
|
||||||
(build-system emacs-build-system)
|
"15f7i39937riswpwjpc1ryg2v0rqj944pwf7rp2ry56rbx4vgl97"))))
|
||||||
(arguments
|
(build-system emacs-build-system)
|
||||||
(list
|
(arguments
|
||||||
#:tests? #true
|
(list
|
||||||
#:test-command #~(list "emacs" "-Q" "--batch"
|
#:tests? #true
|
||||||
"-l" "tests/autothemer-tests.el"
|
#:test-command #~(list "emacs" "-Q" "--batch"
|
||||||
"-f" "ert-run-tests-batch-and-exit")))
|
"-l" "tests/autothemer-tests.el"
|
||||||
(propagated-inputs
|
"-f" "ert-run-tests-batch-and-exit")))
|
||||||
(list emacs-dash))
|
(propagated-inputs
|
||||||
(home-page "https://github.com/sebastiansturm/autothemer")
|
(list emacs-dash))
|
||||||
(synopsis "Conveniently create Emacs themes")
|
(home-page "https://github.com/sebastiansturm/autothemer")
|
||||||
(description
|
(synopsis "Conveniently create Emacs themes")
|
||||||
"Autothemer provides a thin layer on top of @code{deftheme} and
|
(description
|
||||||
|
"Autothemer provides a thin layer on top of @code{deftheme} and
|
||||||
@code{custom-theme-set-faces} that creates a new custom color theme, based on
|
@code{custom-theme-set-faces} that creates a new custom color theme, based on
|
||||||
a set of simplified face specifications and a user-supplied color palette.")
|
a set of simplified face specifications and a user-supplied color palette.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-howm
|
(define-public emacs-howm
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue