gnu: Add ecl-cl-postgres.

* gnu/packages/lisp-xyz.scm (ecl-cl-postgres): New variable.
This commit is contained in:
Pierre Neidhardt 2020-09-01 13:50:26 +02:00
parent 588a4492eb
commit 257cf3e7db
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -10916,6 +10916,19 @@ (define-public sbcl-cl-postgres
(define-public cl-postgres
(sbcl-package->cl-source-package sbcl-cl-postgres))
(define-public ecl-cl-postgres
(package
(inherit (sbcl-package->ecl-package sbcl-cl-postgres))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-ecl
(lambda _
(substitute* "cl-postgres.asd"
(("\\) \"usocket\"") " :ecl) \"usocket\""))
#t)))
#:tests? #f))))
(define-public sbcl-simple-date-postgres-glue
(package
(inherit sbcl-simple-date)