mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
1a6a85768e
commit
7e63a35ff2
1 changed files with 11 additions and 1 deletions
|
@ -3664,7 +3664,17 @@ and a core image.")
|
||||||
(sbcl-package->cl-source-package sbcl-ciel))
|
(sbcl-package->cl-source-package sbcl-ciel))
|
||||||
|
|
||||||
(define-public ecl-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
|
(define-public sbcl-ciel-repl
|
||||||
(let ((commit "0b26d64dcd91a3a2aa962842629a853261dd30fe")
|
(let ((commit "0b26d64dcd91a3a2aa962842629a853261dd30fe")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue