gnu: Add cl-ascii-table.

* gnu/packages/lisp-xyz.scm (sbcl-cl-ascii-table, cl-ascii-table,
  ecl-cl-ascii-table): New variables.
This commit is contained in:
Guillaume Le Vaillant 2020-06-06 14:16:30 +02:00
parent 0e96514e7b
commit d7c606818b
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -11898,3 +11898,32 @@ (define-public cl-1am
(define-public ecl-1am
(sbcl-package->ecl-package sbcl-1am))
(define-public sbcl-cl-ascii-table
(let ((commit "d9f5e774a56fad1b416e4dadb8f8a5b0e84094e2")
(revision "1"))
(package
(name "sbcl-cl-ascii-table")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/telephil/cl-ascii-table.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "125fdif9sgl7k0ngjhxv0wjas2q27d075025hvj2rx1b1x948z4s"))))
(build-system asdf-build-system/sbcl)
(synopsis "Library to make ascii-art tables")
(description
"This is a Common Lisp library to present tabular data in ascii-art
tables.")
(home-page "https://github.com/telephil/cl-ascii-table")
(license license:expat))))
(define-public cl-ascii-table
(sbcl-package->cl-source-package sbcl-cl-ascii-table))
(define-public ecl-cl-ascii-table
(sbcl-package->ecl-package sbcl-cl-ascii-table))