guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#60390] [PATCH 2/2] gnu: dpf-plugins: Use new package style.


From: kiasoc5
Subject: [bug#60390] [PATCH 2/2] gnu: dpf-plugins: Use new package style.
Date: Wed, 28 Dec 2022 18:21:34 -0500

* gnu/packages/music (dpf-plugins)[arguments]: Use G-expressions. Use #$output
instead of assoc-ref.
---
 gnu/packages/music.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 09c4bf6afd..50dbb744e6 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6118,13 +6118,13 @@ (define-public dpf-plugins
         (base32 "017d4cw3kkkxdpry4ya1c6kv8bsfiraij9dgqqcj07hb9dy0xnxi"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f                      ; no "check" target
-       #:make-flags
-       (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
-             (string-append "CC=" ,(cc-for-target)))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))
+     (list #:tests? #f                      ; no "check" target
+           #:make-flags
+           #~(list (string-append "PREFIX=" #$output)
+                   (string-append "CC=" #$(cc-for-target)))
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))))
     (inputs
      (list cairo
            liblo ; for dssi plugins
-- 
2.39.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]