mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add cl-qmynd.
* gnu/packages/lisp-xyz.scm (cl-qmynd, ecl-qmynd, sbcl-qmynd): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
b8d4568b11
commit
10c06966af
1 changed files with 41 additions and 0 deletions
|
@ -2317,6 +2317,47 @@ Lisp programs. It parses URI according to the RFC 2396 specification.")
|
|||
(define-public ecl-puri
|
||||
(sbcl-package->ecl-package sbcl-puri))
|
||||
|
||||
(define-public sbcl-qmynd
|
||||
(let ((commit "7e56daf73f0ed5f49a931c01af75fb874bcf3445")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-qmynd")
|
||||
(version (git-version "1.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/qitab/qmynd")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"06gw5wxcpdclb6a5i5k9lbmdlyqsp182czrm9bm1cpklzbj0ihrl"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
`(("asdf-finalizers" ,sbcl-asdf-finalizers)
|
||||
("babel" ,sbcl-babel)
|
||||
("chipz" ,sbcl-chipz)
|
||||
("cl+ssl" ,sbcl-cl+ssl)
|
||||
("flexi-streams" ,sbcl-flexi-streams)
|
||||
("ironclad" ,sbcl-ironclad)
|
||||
("salza2" ,sbcl-salza2)
|
||||
("trivial-gray-streams" ,sbcl-trivial-gray-streams)
|
||||
("usocket" ,sbcl-usocket)))
|
||||
(home-page "https://github.com/qitab/qmynd")
|
||||
(synopsis "QITAB MySQL Native Driver for Common Lisp")
|
||||
(description "QMyND, the QITAB MySQL Native Driver, is a MySQL client
|
||||
library that directly talks to a MySQL server in its native network protocol.
|
||||
|
||||
It's a part of QITAB umbrella project.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public ecl-qmynd
|
||||
(sbcl-package->ecl-package sbcl-qmynd))
|
||||
|
||||
(define-public cl-qmynd
|
||||
(sbcl-package->cl-source-package sbcl-qmynd))
|
||||
|
||||
(define-public sbcl-queues
|
||||
(let ((commit "47d4da65e9ea20953b74aeeab7e89a831b66bc94"))
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue