me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-dbd-postgres.

* gnu/packages/lisp-xyz.scm (sbcl-dbd-postgres, cl-dbd-postgres): New
  variables.
master
Guillaume Le Vaillant 2020-02-26 11:00:25 +01:00
parent 903d0e81a1
commit af469826e2
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 13 additions and 0 deletions

View File

@ -10924,3 +10924,16 @@ interface for MySQL, PostgreSQL and SQLite.")
(define-public cl-dbd-mysql
(sbcl-package->cl-source-package sbcl-dbd-mysql))
(define-public sbcl-dbd-postgres
(package
(inherit sbcl-dbi)
(name "sbcl-dbd-postgres")
(inputs
`(("cl-postgres" ,sbcl-cl-postgres)
("dbi" ,sbcl-dbi)
("trivial-garbage" ,sbcl-trivial-garbage)))
(synopsis "Database driver for PostgreSQL")))
(define-public cl-dbd-postgres
(sbcl-package->cl-source-package sbcl-dbd-postgres))