mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-datetime.
* gnu/packages/emacs.scm (emacs-datetime): New public variable.
This commit is contained in:
parent
b8f910436c
commit
5746ca13dc
1 changed files with 20 additions and 0 deletions
|
@ -8503,3 +8503,23 @@ navigate and display hierarchy structures.")
|
||||||
(description
|
(description
|
||||||
"This package allows to control @code{pulseaudio} from Emacs.")
|
"This package allows to control @code{pulseaudio} from Emacs.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-datetime
|
||||||
|
(package
|
||||||
|
(name "emacs-datetime")
|
||||||
|
(version "0.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/doublep/datetime/archive/"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/doublep/datetime/")
|
||||||
|
(synopsis "Library to work with dates in Emacs")
|
||||||
|
(description "Parsing, formatting, matching and recoding
|
||||||
|
timestamps and date-time format strings library for Emacs.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue