gnu: ecl-ciel: Remove build phase "build-image" and output "image".

* gnu/packages/lisp-xyz.scm (ecl-ciel)[outputs]: Remove "image".
  [arguments]: Remove 'build-image' phase.

Change-Id: I6640add7f28ac655180fc9b419684dc9d51f5130
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Konrad Hinsen 2024-09-30 14:25:13 +02:00 committed by Guillaume Le Vaillant
parent 1a6a85768e
commit 7e63a35ff2
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -3664,7 +3664,17 @@ (define-public cl-ciel
(sbcl-package->cl-source-package sbcl-ciel))
(define-public ecl-ciel
(sbcl-package->ecl-package sbcl-ciel))
;; Remove the "image" output and the build phase "build-image"
;; (which fails because ECL has no support for images).
(let ((pkg (sbcl-package->ecl-package sbcl-ciel)))
(package
(inherit pkg)
(outputs '("out"))
(arguments
(substitute-keyword-arguments (package-arguments pkg)
((#:phases phases)
`(modify-phases ,phases
(delete 'build-image))))))))
(define-public sbcl-ciel-repl
(let ((commit "0b26d64dcd91a3a2aa962842629a853261dd30fe")