diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-09-17 16:39:59 +0200 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-20 21:40:12 +0900 |
| commit | b7d3e55b488d180073b75234b2f46eb8a036ec5b (patch) | |
| tree | 0da5de3b6a12f1b64d19000e239fad4dfaa6e697 /gnu | |
| parent | 9acd7ea835171ba4fafd792b8138a6308ab01749 (diff) | |
gnu: qdl: Improve style.
* gnu/packages/flashing-tools.scm (qdl)[arguments]: Use Gexps.
Change-Id: Id536b6fffd0881c09101558e935d948cd544c0f4
Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/flashing-tools.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm index 90ddfdcb220..a30111d95f7 100644 --- a/gnu/packages/flashing-tools.scm +++ b/gnu/packages/flashing-tools.scm @@ -845,10 +845,14 @@ production use.") (native-inputs (list libxml2)) (inputs (list eudev)) (arguments - `(#:tests? #f ; No tests implemented - #:make-flags (list (string-append "CC=" ,(cc-for-target)) - (string-append "prefix=" %output)) - #:phases (modify-phases %standard-phases (delete 'configure)))) + (list + #:tests? #f ; No tests implemented + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "prefix=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure)))) (home-page "https://git.linaro.org/landing-teams/working/qualcomm/qdl") (synopsis "Qualcomm EDL mode flashing tool") (description "This tool communicates with USB devices of id 05c6:9008 to |
