guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

19/88: gnu: Add emacs-datetime.


From: Oleg Pykhalov
Subject: 19/88: gnu: Add emacs-datetime.
Date: Wed, 2 May 2018 13:21:07 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 5746ca13dcdc2dac6747d5026a5025ae3cd16cf8
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:57:47 2018 +0300

    gnu: Add emacs-datetime.
    
    * gnu/packages/emacs.scm (emacs-datetime): New public variable.
---
 gnu/packages/emacs.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 65fef9d..ccaf4d2 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -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+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]