mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add cl-postgres.
* gnu/packages/lisp-xyz.scm (sbcl-cl-postgres, cl-postgres): New variables.
This commit is contained in:
parent
c79ea1a217
commit
f5203d2584
1 changed files with 21 additions and 0 deletions
|
@ -10792,3 +10792,24 @@ (define-public cl-simple-date
|
|||
|
||||
(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))
|
||||
|
|
Loading…
Reference in a new issue