gnu: Add cl-ana.typed-table.

* gnu/packages/lisp-xyz.scm (sbcl-cl-ana.typed-table, cl-ana.typed-table,
  ecl-cl-ana.typed-table): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Katherine Cox-Buday 2020-01-03 17:45:16 +01:00 committed by Guillaume Le Vaillant
parent 05216cf76d
commit 82900285e8
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -8303,3 +8303,25 @@ (define-public cl-ana.hdf-utils
(define-public ecl-cl-ana.hdf-utils
(sbcl-package->ecl-package sbcl-cl-ana.hdf-utils))
(define-public sbcl-cl-ana.typed-table
(package
(inherit sbcl-cl-ana-boot0)
(name "sbcl-cl-ana.typed-table")
(inputs
`(("alexandria" ,sbcl-alexandria)
("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
("cl-ana.table" ,sbcl-cl-ana.table)
("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
(arguments
(substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
((#:asd-file _ "") "typed-table/cl-ana.typed-table.asd")
((#:asd-system-name _ #f) "cl-ana.typed-table")))))
(define-public cl-ana.typed-table
(sbcl-package->cl-source-package sbcl-cl-ana.typed-table))
(define-public ecl-cl-ana.typed-table
(sbcl-package->ecl-package sbcl-cl-ana.typed-table))