[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/10: gnu: Add cl-postgres.
From: |
guix-commits |
Subject: |
03/10: gnu: Add cl-postgres. |
Date: |
Wed, 26 Feb 2020 05:32:23 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit f5203d25847c3ee1f094946362fd5d9e64838328
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Tue Feb 25 19:11:58 2020 +0100
gnu: Add cl-postgres.
* gnu/packages/lisp-xyz.scm (sbcl-cl-postgres, cl-postgres): New variables.
---
gnu/packages/lisp-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 1955c94..2f84ad2 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10792,3 +10792,24 @@ objects, used to support storing and retrieving
time-related SQL types.")
(define-public ecl-simple-date
(sbcl-package->ecl-package sbcl-simple-date))
+
+(define-public sbcl-cl-postgres
+ (package
+ (inherit sbcl-simple-date)
+ (name "sbcl-cl-postgres")
+ (native-inputs
+ `(("fiveam" ,sbcl-fiveam)
+ ("simple-date" ,sbcl-simple-date)))
+ (inputs
+ `(("md5" ,sbcl-md5)
+ ("split-sequence" ,sbcl-split-sequence)
+ ("usocket" ,sbcl-usocket)))
+ (arguments
+ `(#:tests? #f)) ; TODO: Break simple-date/postgres-glue circular
dependency
+ (synopsis "Common Lisp interface for PostgreSQL")
+ (description
+ "@code{cl-postgres} is a low-level library used for interfacing with
+a PostgreSQL server over a socket.")))
+
+(define-public cl-postgres
+ (sbcl-package->cl-source-package sbcl-cl-postgres))
- 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, 2020/02/26
- 03/10: gnu: Add cl-postgres.,
guix-commits <=
- 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