mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: cl-form-types: Disable tests on ECL implementation.
* gnu/packages/lisp-xyz.scm (ecl-cl-form-types): Disable tests. Change-Id: I8cca905edc57bf4e3e25847aff425ef1762f2e3f
This commit is contained in:
parent
d67e4f0f9b
commit
ae1c3ce8dc
1 changed files with 9 additions and 1 deletions
|
@ -16693,7 +16693,15 @@ (define-public cl-form-types
|
|||
(sbcl-package->cl-source-package sbcl-cl-form-types))
|
||||
|
||||
(define-public ecl-cl-form-types
|
||||
(sbcl-package->ecl-package sbcl-cl-form-types))
|
||||
(let ((pkg (sbcl-package->ecl-package sbcl-cl-form-types)))
|
||||
(package
|
||||
(inherit pkg)
|
||||
(arguments
|
||||
;; FIXME: Syntax error in declaration (TYPE T (FORM &KEY STRICT
|
||||
;; EXPAND-COMPILER-MACROS (TEST (QUOTE FORM-TYPE=))))
|
||||
;; An error occurred during initialization: COMPILE-FILE-ERROR while...
|
||||
;; See <https://github.com/alex-gutev/cl-form-types/issues/22>.
|
||||
'(#:tests? #f)))))
|
||||
|
||||
(define-public sbcl-generic-cl
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue