diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-04-14 17:26:50 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-04-14 17:27:10 +0200 |
commit | 2caa8cb26f5146e8218b3fa37fa8b367d0e2b821 (patch) | |
tree | b0ef84c75b0c3023096c2f00fabb5d248cb8ba7d | |
parent | d867facecb710bc7ddec168a3aa085eec5e78369 (diff) | |
download | guix-2caa8cb26f5146e8218b3fa37fa8b367d0e2b821.tar.gz guix-2caa8cb26f5146e8218b3fa37fa8b367d0e2b821.zip |
gnu: microscheme: Use gexps.
* gnu/packages/avr-xyz.scm (microscheme)[arguments]: Use gexps.
Change-Id: Ifea17e8e1d8ba69ec0517a9d79ccb94e1e203dc4
-rw-r--r-- | gnu/packages/avr-xyz.scm | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/gnu/packages/avr-xyz.scm b/gnu/packages/avr-xyz.scm index 1cf99d6a3b..c684b6183b 100644 --- a/gnu/packages/avr-xyz.scm +++ b/gnu/packages/avr-xyz.scm @@ -200,18 +200,16 @@ documentation.") (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments - `(#:parallel-build? #f ; fails to build otherwise - #:tests? #f ; no tests - #:phases - (modify-phases %standard-phases - (delete 'configure)) + (list #:parallel-build? #f ;fails to build otherwise + #:tests? #f ;no tests + #:phases #~(modify-phases %standard-phases + (delete 'configure)) - ;; The 'check' target runs 'cppcheck' and 'clang-format', but it fails - ;; unless given an old version of the former, such as 2.10.3. Since - ;; the 'all' target depends on 'check', explicitly ask for 'build'. - #:make-flags - (list "build" - (string-append "PREFIX=" (assoc-ref %outputs "out"))))) + ;; The 'check' target runs 'cppcheck' and 'clang-format', but it fails + ;; unless given an old version of the former, such as 2.10.3. Since + ;; the 'all' target depends on 'check', explicitly ask for 'build'. + #:make-flags #~(list "build" + (string-append "PREFIX=" #$output)))) (native-inputs (list unzip xxd)) (home-page "https://github.com/ryansuchocki/microscheme/") (synopsis "Scheme subset for Atmel microcontrollers") |