me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-periodic-table.

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

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
master
Foo Chuan Wei 2021-11-15 08:18:58 +00:00 committed by Guillaume Le Vaillant
parent 616bcc9c0b
commit 333e1b3ce6
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 27 additions and 0 deletions

View File

@ -18679,6 +18679,33 @@ terminals.")
(define-public ecl-clinenoise
(sbcl-package->ecl-package sbcl-clinenoise))
(define-public sbcl-periodic-table
(package
(name "sbcl-periodic-table")
(version "1.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://common-lisp.net/project/chemboy/periodic-table-"
version ".tar.gz"))
(sha256
(base32 "1ircvqm3q93ma4rxbxprb1i9rcax10ld6xmdzdhfnigr27sh5jvg"))))
(build-system asdf-build-system/sbcl)
(home-page "https://common-lisp.net/project/chemboy/")
(synopsis "Periodic table for Common Lisp")
(description
"This package defines a Common Lisp package, @code{:elements}, with an
@code{ELEMENT} structure and a number of functions to search the periodic
table.")
(license license:llgpl)))
(define-public cl-periodic-table
(sbcl-package->cl-source-package sbcl-periodic-table))
(define-public ecl-periodic-table
(sbcl-package->ecl-package sbcl-periodic-table))
(define-public sbcl-cl-pass
(let ((commit "e58e97c0c0588dc742c061208afb9bc31e4dbd34")
(revision "1"))