diff options
author | jgart <jgart@dismail.de> | 2025-06-27 11:03:13 -0400 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2025-06-27 11:18:36 -0400 |
commit | 4f5cf07f1837d0665aa8239bb25e8f4677ff0236 (patch) | |
tree | 3f826a3d5497d1bb281a4540cb503749b3194501 /guix/build/lisp-utils.scm | |
parent | d563bf6178fd71f6d768c4bf3be7ccc18c188c04 (diff) |
guix: asdf: Add asdf-build-system/abcl.lisp-team-asdf-build-system/abcl
* guix/build-system/asdf.scm (asdf-build-system/abcl): New variable.
Change-Id: Ifdf2a395f78f9bbb2aabe60b8cd584729666a526
Diffstat (limited to 'guix/build/lisp-utils.scm')
-rw-r--r-- | guix/build/lisp-utils.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guix/build/lisp-utils.scm b/guix/build/lisp-utils.scm index 793ee3e163..0354990b67 100644 --- a/guix/build/lisp-utils.scm +++ b/guix/build/lisp-utils.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2016, 2017 Andy Patterson <ajpatter@uwaterloo.ca> ;;; Copyright © 2020, 2022 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2022 Pierre Neidhardt <mail@ambrevar.xyz> +;;; Copyright © 2025 jgart <jgart@dismail.de> ;;; ;;; This file is part of GNU Guix. ;;; @@ -108,6 +109,8 @@ with PROGRAM." "--eval" "(quit)")) ("clasp" `(,(%lisp) "--non-interactive" ,@(spread-statements program "--eval"))) + ("abcl" `(,(%lisp) "--batch" + ,@(spread-statements program "--eval"))) (_ (error "The LISP provided is not supported at this time.")))) (define (compile-systems systems directory operation) |