gnu: Add emacs-datetime.

* gnu/packages/emacs.scm (emacs-datetime): New public variable.
master
Oleg Pykhalov 2018-05-02 18:57:47 +03:00
parent b8f910436c
commit 5746ca13dc
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 20 additions and 0 deletions

View File

@ -8503,3 +8503,23 @@ navigate and display hierarchy structures.")
(description
"This package allows to control @code{pulseaudio} from Emacs.")
(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+)))