[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/10: gnu: Add cl-simple-date.
From: |
guix-commits |
Subject: |
02/10: gnu: Add cl-simple-date. |
Date: |
Wed, 26 Feb 2020 05:32:22 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit c79ea1a217691a337f7831d5a2fe6a94f6accd14
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Tue Feb 25 19:00:58 2020 +0100
gnu: Add cl-simple-date.
* gnu/packages/lisp-xyz.scm (sbcl-simple-date, cl-simple-date,
ecl-simple-date): New variables.
---
gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c6610d8..1955c94 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10761,3 +10761,34 @@ approach to templating.")
(define-public cl-mysql
(sbcl-package->cl-source-package sbcl-cl-mysql))
+
+(define-public sbcl-simple-date
+ (let ((commit "74469b25bbda990ec9b77e0d0eccdba0cd7e721a")
+ (revision "1"))
+ (package
+ (name "sbcl-simple-date")
+ (version (git-version "1.19" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/marijnh/Postmodern.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0im7ymnyxjhn2w74jfg76k5gpr0gl33n31akx33hl28722ljd0hd"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ `(("fiveam" ,sbcl-fiveam)))
+ (synopsis "Basic date and time objects for Common Lisp")
+ (description
+ "@code{simple-date} is a very basic implementation of date and time
+objects, used to support storing and retrieving time-related SQL types.")
+ (home-page "https://marijnhaverbeke.nl/postmodern/")
+ (license license:zlib))))
+
+(define-public cl-simple-date
+ (sbcl-package->cl-source-package sbcl-simple-date))
+
+(define-public ecl-simple-date
+ (sbcl-package->ecl-package sbcl-simple-date))
- branch master updated (849f6bc -> 0e9fc3d), guix-commits, 2020/02/26
- 01/10: gnu: Add cl-mysql., guix-commits, 2020/02/26
- 02/10: gnu: Add cl-simple-date.,
guix-commits <=
- 03/10: gnu: Add cl-postgres., guix-commits, 2020/02/26
- 04/10: gnu: Add cl-simple-date-postgres-glue., guix-commits, 2020/02/26
- 05/10: gnu: Add cl-s-sql., guix-commits, 2020/02/26
- 07/10: gnu: Add cl-dbi., guix-commits, 2020/02/26
- 08/10: gnu: Add cl-dbd-mysql., guix-commits, 2020/02/26
- 10/10: gnu: Add cl-dbd-sqlite3., guix-commits, 2020/02/26
- 06/10: gnu: Add cl-postmodern., guix-commits, 2020/02/26
- 09/10: gnu: Add cl-dbd-postgres., guix-commits, 2020/02/26