diff options
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 059788b169..002b3bb821 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -969,6 +969,17 @@ portable between implementations.") `(modify-phases ,phases (delete 'build-doc)))))))) +(define-public clasp-alexandria + (let ((pkg (sbcl-package->clasp-package sbcl-alexandria))) + (package + (inherit pkg) + (outputs '("out")) + (arguments + (substitute-keyword-arguments (package-arguments pkg) + ((#:phases phases) + `(modify-phases ,phases + (delete 'build-doc)))))))) + (define-public sbcl-alexandria-plus (let ((commit "adafb09838a84895bedb119f8253b89b6a04a2c5") (revision "0")) |