[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: Add cl-chronicity.
From: |
guix-commits |
Subject: |
05/08: gnu: Add cl-chronicity. |
Date: |
Mon, 8 Mar 2021 09:12:25 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 1f3b7c0289715dc44c96cf019b492c4a8993a875
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Mar 6 22:03:01 2021 +0000
gnu: Add cl-chronicity.
* gnu/packages/lisp-xyz.scm: (sbcl-chronicity, cl-chronicity,
ecl-chronicity): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
gnu/packages/lisp-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 35a119a..e4f4caf 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -4811,6 +4811,39 @@ Long Painful History of Time\".")
(define-public ecl-local-time
(sbcl-package->ecl-package sbcl-local-time))
+(define-public sbcl-chronicity
+ (package
+ (name "sbcl-chronicity")
+ (version "0.4.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/chaitanyagupta/chronicity")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name "chronicity" version))
+ (sha256
+ (base32 "0rzrl9is2v1aqbm0sym0qx3blnpd0bl13dkkmll6mb3983k2mkax"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ `(("lisp-unit" ,sbcl-lisp-unit)))
+ (inputs
+ `(("cl-interpol" ,sbcl-cl-interpol)
+ ("cl-ppcre" ,sbcl-cl-ppcre)
+ ("local-time" ,sbcl-local-time)))
+ (home-page "https://github.com/chaitanyagupta/chronicity")
+ (synopsis "Natural language date and time parser for Common Lisp")
+ (description
+ "CHRONICITY is Common Lisp natural language date and time parser inspired
+by Ruby's @code{Chronic}.")
+ (license license:bsd-3)))
+
+(define-public ecl-chronicity
+ (sbcl-package->ecl-package sbcl-chronicity))
+
+(define-public cl-chronicity
+ (sbcl-package->cl-source-package sbcl-chronicity))
+
(define-public sbcl-trivial-mimes
(let ((commit "a741fc2f567a4f86b853fd4677d75e62c03e51d9")
(revision "2"))
- branch master updated (fe830ff -> 1cf22d4), guix-commits, 2021/03/08
- 02/08: gnu: sbcl-nodgui: Update to 0.1.1-1.4a9c2e7., guix-commits, 2021/03/08
- 04/08: gnu: Add cl-diskspace., guix-commits, 2021/03/08
- 05/08: gnu: Add cl-chronicity.,
guix-commits <=
- 03/08: gnu: Add cl-mount-info., guix-commits, 2021/03/08
- 06/08: gnu: Add cl-debug., guix-commits, 2021/03/08
- 01/08: gnu: sbcl-cl-interpol: Update to 0.2.7-1.70a1137., guix-commits, 2021/03/08
- 07/08: gnu: Add cl-parse., guix-commits, 2021/03/08
- 08/08: gnu: Add cl-re., guix-commits, 2021/03/08