Archived
1
0
Fork 0

gnu: Add sbcl-clsql-postgresql-socket3.

* gnu/packages/lisp-xyz.scm (sbcl-clsql-postgresql-socket3): New variable.
This commit is contained in:
Guillaume Le Vaillant 2020-02-28 19:33:55 +01:00
parent cd53df62c9
commit f9680d5230
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -11128,3 +11128,26 @@ interfaces as well as a functional and an object oriented interface.")
"/lib/libpq")))
#t))))))
(synopsis "PostgreSQL driver for Common Lisp SQL interface library")))
(define-public sbcl-clsql-postgresql-socket3
(package
(inherit sbcl-clsql)
(name "sbcl-clsql-postgresql-socket3")
(inputs
`(("cl-postgres" ,sbcl-cl-postgres)
("clsql" ,sbcl-clsql)
("md5" ,sbcl-md5)))
(arguments
(substitute-keyword-arguments (package-arguments sbcl-clsql)
((#:phases phases '%standard-phases)
`(modify-phases ,phases
(add-after 'create-asd-file 'fix-asd-file
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(lib (string-append out "/lib/" (%lisp-type)))
(asd (string-append lib "/clsql-postgresql-socket3.asd")))
(substitute* asd
(("CLSQL-POSTGRESQL-SOCKET-SYSTEM::")
"")))
#t))))))
(synopsis "PostgreSQL driver for Common Lisp SQL interface library")))