mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: microscheme: Use gexps.
* gnu/packages/avr-xyz.scm (microscheme)[arguments]: Use gexps. Change-Id: Ifea17e8e1d8ba69ec0517a9d79ccb94e1e203dc4
This commit is contained in:
parent
d867facecb
commit
2caa8cb26f
1 changed files with 9 additions and 11 deletions
|
@ -200,18 +200,16 @@ documentation.")
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-build? #f ; fails to build otherwise
|
(list #:parallel-build? #f ;fails to build otherwise
|
||||||
#:tests? #f ;no tests
|
#:tests? #f ;no tests
|
||||||
#:phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'configure))
|
(delete 'configure))
|
||||||
|
|
||||||
;; The 'check' target runs 'cppcheck' and 'clang-format', but it fails
|
;; 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
|
;; unless given an old version of the former, such as 2.10.3. Since
|
||||||
;; the 'all' target depends on 'check', explicitly ask for 'build'.
|
;; the 'all' target depends on 'check', explicitly ask for 'build'.
|
||||||
#:make-flags
|
#:make-flags #~(list "build"
|
||||||
(list "build"
|
(string-append "PREFIX=" #$output))))
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
|
||||||
(native-inputs (list unzip xxd))
|
(native-inputs (list unzip xxd))
|
||||||
(home-page "https://github.com/ryansuchocki/microscheme/")
|
(home-page "https://github.com/ryansuchocki/microscheme/")
|
||||||
(synopsis "Scheme subset for Atmel microcontrollers")
|
(synopsis "Scheme subset for Atmel microcontrollers")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue