gnu: Add cl-prevalence.

* gnu/packages/lisp.scm (cl-prevalence, sbcl-cl-prevalence, ecl-cl-prevalence): New variables.
master
Pierre Neidhardt 2019-09-16 11:58:40 +02:00
parent 5216632a95
commit eb2e9ef4d9
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 34 additions and 0 deletions

View File

@ -6900,3 +6900,37 @@ number of other open source projects.
(define-public ecl-s-sysdeps
(sbcl-package->ecl-package sbcl-s-sysdeps))
(define-public sbcl-cl-prevalence
(let ((commit "c163c227ed85d430b82cb1e3502f72d4f88e3cfa")
(revision "1"))
(package
(name "sbcl-cl-prevalence")
(build-system asdf-build-system/sbcl)
(version (git-version "5" revision commit))
(home-page "https://github.com/40ants/cl-prevalence")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1i9zj1q2ahgwch56an21yzbgkynz0kab9fyxkq9mg8p3xrv38jjn"))))
(inputs
`(("s-sysdeps" ,sbcl-s-sysdeps)
("s-xml" ,sbcl-s-xml)))
(synopsis "Implementation of object prevalence for Common Lisp")
(description "This Common Lisp library implements object prevalence (see
@url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
classes and cyclic data structures are supported.")
(license license:llgpl))))
(define-public cl-prevalence
(sbcl-package->cl-source-package sbcl-cl-prevalence))
(define-public ecl-cl-prevalence
(sbcl-package->ecl-package sbcl-cl-prevalence))