mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add cl-dfio.
* gnu/packages/lisp-xyz.scm (cl-dfio, sbcl-dfio): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
30850a3626
commit
e93171b263
1 changed files with 39 additions and 0 deletions
|
@ -27122,6 +27122,45 @@ (define-public cl-data-frame
|
|||
;; (define-public ecl-data-frame
|
||||
;; (sbcl-package->ecl-package sbcl-data-frame))
|
||||
|
||||
(define-public sbcl-dfio
|
||||
(let ((commit "5caf473acb9bc464839e87395724cbd941167915")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "sbcl-dfio")
|
||||
(version (git-version "1.0.2" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Lisp-Stat/dfio")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "cl-dfio" version))
|
||||
(sha256
|
||||
(base32 "1p53r7773939jnap518xp4b4wfvc1kbrz9jp6yd40xq0jpf9pbqg"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
(list sbcl-alexandria
|
||||
sbcl-anaphora
|
||||
sbcl-data-frame
|
||||
sbcl-dexador
|
||||
sbcl-fare-csv
|
||||
sbcl-let-plus
|
||||
sbcl-yason))
|
||||
(native-inputs
|
||||
(list sbcl-clunit2))
|
||||
(home-page "https://lisp-stat.dev/docs/manuals/data-frame/")
|
||||
(synopsis "Read data to and from data frames")
|
||||
(description "This package provides tools for manipulating data
|
||||
in files using data frames.")
|
||||
(license license:ms-pl))))
|
||||
|
||||
(define-public cl-dfio
|
||||
(sbcl-package->cl-source-package sbcl-dfio))
|
||||
|
||||
;; This depends on ecl-data-frame, which doesn't work yet.
|
||||
;; (define-public ecl-dfio
|
||||
;; (sbcl-package->ecl-package sbcl-dfio))
|
||||
|
||||
;;;
|
||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||
;;; of a merge conflict, place them above by existing packages with similar
|
||||
|
|
Loading…
Reference in a new issue