mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add cl-s-sql.
* gnu/packages/lisp-xyz.scm (sbcl-s-sql, cl-s-sql): New variables.
This commit is contained in:
parent
acba62d9bd
commit
88dbe39b16
1 changed files with 18 additions and 0 deletions
|
@ -10827,3 +10827,21 @@ a PostgreSQL server over a socket.")))
|
|||
|
||||
(define-public cl-simple-date-postgres-glue
|
||||
(sbcl-package->cl-source-package sbcl-simple-date-postgres-glue))
|
||||
|
||||
(define-public sbcl-s-sql
|
||||
(package
|
||||
(inherit sbcl-simple-date)
|
||||
(name "sbcl-s-sql")
|
||||
(inputs
|
||||
`(("alexandria" ,sbcl-alexandria)
|
||||
("cl-postgres" ,sbcl-cl-postgres)))
|
||||
(arguments
|
||||
`(#:tests? #f)) ; TODO: Break postmodern circular dependency
|
||||
(synopsis "Lispy DSL for SQL")
|
||||
(description
|
||||
"@code{s-sql} is a Common Lisp library that can be used to compile
|
||||
s-expressions to strings of SQL code, escaping any Lisp values inside, and
|
||||
doing as much as possible of the work at compile time.")))
|
||||
|
||||
(define-public cl-s-sql
|
||||
(sbcl-package->cl-source-package sbcl-s-sql))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue