diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-09-10 11:21:34 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-09-25 10:33:04 -0400 |
commit | d35bc00cc1c27043f212762786d89a94c16de3fe (patch) | |
tree | 0f5fa83425ba590251192cccb870291d2fdc97f0 /gnu/packages/avr-xyz.scm | |
parent | 1d872a67054291bf05ef00185b60f73d6608bf18 (diff) |
gnu: avr: Delay all cross compilation packages.
Partially addresses <https://issues.guix.gnu.org/65716>.
* gnu/packages/avr.scm: Add commentary comment.
(avr-binutils): Turn into this...
(make-avr-binutils): ... procedure.
(avr-gcc): Likewise, into...
(make-avr-gcc): ... this. Adjust native-inputs accordingly.
(avr-toolchain): Likewise, into...
(make-avr-toolchain): ... this.
* gnu/packages/avr-xyz.scm (simavr) [propagated-inputs]: replace avr-toolchain
with a call to the 'make-avr-toolchain' procedure.
Series-changes: 2
- Use mlambda for procedures
- Fix ((make-avr-toolchain)) typo
Diffstat (limited to 'gnu/packages/avr-xyz.scm')
-rw-r--r-- | gnu/packages/avr-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/avr-xyz.scm b/gnu/packages/avr-xyz.scm index a05157ede7..e8844b8d43 100644 --- a/gnu/packages/avr-xyz.scm +++ b/gnu/packages/avr-xyz.scm @@ -71,7 +71,7 @@ (string-append "PREFIX=" #$output) (string-append "DESTDIR=" #$output)))) (propagated-inputs - (list avr-toolchain)) + (list (make-avr-toolchain))) (native-inputs (list autoconf which |