mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-24 19:27:44 +01:00
gnu: Add emacs-display-wttr.
* gnu/packages/emacs-xyz.scm (emacs-display-wttr): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
cb8b758956
commit
4d5ac8dad0
1 changed files with 26 additions and 0 deletions
|
@ -18293,6 +18293,32 @@ (define-public emacs-which-key
|
|||
settings).")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-display-wttr
|
||||
(package
|
||||
(name "emacs-display-wttr")
|
||||
(version "2.1.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~josegpt/display-wttr")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1hmawlnd2l89p48pviwn4khvjs0iry8x67cyqw70r10dd0ybn851"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list #:tests? #t
|
||||
#:test-command #~(list "emacs" "--batch"
|
||||
"-l" "display-wttr-test.el"
|
||||
"-f" "ert-run-tests-batch-and-exit")))
|
||||
(home-page "https://git.sr.ht/~josegpt/display-wttr")
|
||||
(synopsis "Display wttr (weather) in the mode line")
|
||||
(description "This package contains a minor mode that can be toggled. It
|
||||
fetches weather information based on your location or on a given location from
|
||||
@uref{https://wttr.in} and then displays it on the mode line.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-free-keys
|
||||
(package
|
||||
(name "emacs-free-keys")
|
||||
|
|
Loading…
Reference in a new issue