diff options
author | Konrad Hinsen <konrad.hinsen@fastmail.net> | 2024-09-30 14:25:13 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-09-30 14:54:07 +0200 |
commit | 7e63a35ff265f5cb6efa8bbe0bbf62bb9c102cf0 (patch) | |
tree | 425089bd2efdbd0bd5de0416820cb0a76eef6bc6 /gnu/packages/lisp-xyz.scm | |
parent | 1a6a85768e4652ee1bd44d3a913baa3285be238b (diff) | |
download | guix-7e63a35ff265f5cb6efa8bbe0bbf62bb9c102cf0.tar.gz guix-7e63a35ff265f5cb6efa8bbe0bbf62bb9c102cf0.zip |
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>
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index f40cd536d0..ea85dd9fbf 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -3664,7 +3664,17 @@ and a core image.") (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") |