mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: Add cl-pp-toml.
* gnu/packages/lisp-xyz.scm (sbcl-pp-toml, cl-pp-toml, ecl-pp-toml): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
9c2d6ddfbe
commit
46a2e98ca9
1 changed files with 40 additions and 0 deletions
|
@ -20430,6 +20430,46 @@ (define-public cl-clop
|
||||||
(define-public ecl-clop
|
(define-public ecl-clop
|
||||||
(sbcl-package->ecl-package sbcl-clop))
|
(sbcl-package->ecl-package sbcl-clop))
|
||||||
|
|
||||||
|
(define-public sbcl-pp-toml
|
||||||
|
(let ((commit "54f7d08c939d18b24363342c98c19b6812d7afb9")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-pp-toml")
|
||||||
|
(version (git-version "1.0.1" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/pnathan/pp-toml")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name "cl-pp-toml" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "136d7jzz7l2ck9wwld0ac46jmpm94lvja6m50sy73s232slka2hg"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(native-inputs
|
||||||
|
(list sbcl-fiveam))
|
||||||
|
(inputs
|
||||||
|
(list sbcl-alexandria
|
||||||
|
sbcl-cl-ppcre
|
||||||
|
sbcl-esrap
|
||||||
|
sbcl-generic-comparability
|
||||||
|
sbcl-local-time
|
||||||
|
sbcl-parse-number
|
||||||
|
sbcl-split-sequence))
|
||||||
|
(home-page "https://github.com/pnathan/pp-toml")
|
||||||
|
(synopsis "TOML parser for Common Lisp")
|
||||||
|
(description
|
||||||
|
"PP-TOML is a Common Lisp library for parsing strings in the TOML
|
||||||
|
configuration file format. It implements only the 0.1.0 specification of
|
||||||
|
TOML.")
|
||||||
|
(license license:llgpl))))
|
||||||
|
|
||||||
|
(define-public cl-pp-toml
|
||||||
|
(sbcl-package->cl-source-package sbcl-pp-toml))
|
||||||
|
|
||||||
|
(define-public ecl-pp-toml
|
||||||
|
(sbcl-package->ecl-package sbcl-pp-toml))
|
||||||
|
|
||||||
(define-public sbcl-linedit
|
(define-public sbcl-linedit
|
||||||
(let ((commit "0561c97dfca2f5854fcc66558a567a9875ddcb8f")
|
(let ((commit "0561c97dfca2f5854fcc66558a567a9875ddcb8f")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Reference in a new issue