diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-09-17 16:26:08 +0200 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-20 21:38:46 +0900 |
| commit | b5c3d802e5f8064d51a8f0407c50ec7d31c18d06 (patch) | |
| tree | 387e301bdba41a246e99da6fa513ea93e36ebc35 /gnu | |
| parent | 79ee655238e63d20337b7c272ff067f200f985d5 (diff) | |
gnu: rkflashtool: Improve style.
* gnu/packages/flashing-tools.scm (rkflashtool)[arguments]: Use Gexps.
Change-Id: I4634e0ff6de571e30731fd188e3227face081e6e
Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/flashing-tools.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm index d5435ce6ede..b859a0f3451 100644 --- a/gnu/packages/flashing-tools.scm +++ b/gnu/packages/flashing-tools.scm @@ -338,11 +338,13 @@ for possible workarounds.") "1ndyzg1zlgg20dd8js9kfqm5kq19k005vddkvf65qj20w0pcyahn")))) (build-system gnu-build-system) (arguments - '(#:phases - (modify-phases %standard-phases - (delete 'configure)) ; no configure - #:make-flags (list (string-append "PREFIX=" %output)) - #:tests? #f)) ; no tests + (list + #:phases + #~(modify-phases %standard-phases + (delete 'configure)) ; no configure + #:make-flags + #~(list (string-append "PREFIX=" #$output)) + #:tests? #f)) ; no tests (native-inputs (list pkg-config)) (inputs |
