mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add polymorphic-functions.
* gnu/packages/lisp-xyz.scm (cl-polymorphic-functions, ecl-polymorphic-functions, sbcl-polymorphic-functions): New variables.
This commit is contained in:
parent
60c00cdd60
commit
1d2a1bcb44
1 changed files with 46 additions and 0 deletions
|
@ -21994,3 +21994,49 @@ (define-public cl-ctype
|
||||||
|
|
||||||
(define-public ecl-ctype
|
(define-public ecl-ctype
|
||||||
(sbcl-package->ecl-package sbcl-ctype))
|
(sbcl-package->ecl-package sbcl-ctype))
|
||||||
|
|
||||||
|
(define-public sbcl-polymorphic-functions
|
||||||
|
(package
|
||||||
|
(name "sbcl-polymorphic-functions")
|
||||||
|
(version "0.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/digikar99/polymorphic-functions/")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name "cl-polymorphic-functions" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "161ylp3avmkylgfddp7i1kscv3bqx734jk1i97xhsbl7x83nin0h"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(inputs
|
||||||
|
(list sbcl-alexandria
|
||||||
|
sbcl-closer-mop
|
||||||
|
sbcl-compiler-macro-notes
|
||||||
|
sbcl-ctype
|
||||||
|
sbcl-fiveam
|
||||||
|
sbcl-cl-form-types
|
||||||
|
sbcl-introspect-environment
|
||||||
|
sbcl-slime-swank))
|
||||||
|
(arguments
|
||||||
|
;; Tests fail: https://github.com/digikar99/polymorphic-functions/issues/8
|
||||||
|
'(#:tests? #f))
|
||||||
|
(home-page "https://github.com/digikar99/polymorphic-functions/")
|
||||||
|
(synopsis "Function type to dispatch on types instead of classes")
|
||||||
|
(description
|
||||||
|
"This library provides all of
|
||||||
|
|
||||||
|
@itemize
|
||||||
|
@item ad hoc polymorphism and
|
||||||
|
@item subtype polymorphism
|
||||||
|
@item parametric polymorphism (in a very limited sense)
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
to dispatch on the basis of types rather than classes.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public cl-polymorphic-functions
|
||||||
|
(sbcl-package->cl-source-package sbcl-polymorphic-functions))
|
||||||
|
|
||||||
|
(define-public ecl-polymorphic-functions
|
||||||
|
(sbcl-package->ecl-package sbcl-polymorphic-functions))
|
||||||
|
|
Loading…
Reference in a new issue