guix-commits
[Top][All Lists]
Advanced

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

07/12: gnu: foo-yc20: Use gexp.


From: guix-commits
Subject: 07/12: gnu: foo-yc20: Use gexp.
Date: Tue, 7 Feb 2023 09:04:58 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit cd53d64876a3148b3c64e2c3ee36560ac6c0c3fe
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 7 11:29:28 2023 +0100

    gnu: foo-yc20: Use gexp.
    
    * gnu/packages/music.scm (foo-yc20)[arguments]: Use gexp.
---
 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 38a0a34bb9..b2d1f350d4 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5959,17 +5959,17 @@ and debugging of event signal flows inside plugin 
graphs.")
          "1drzfyr7mzb58pdv0gsqkg6ds6kbgp6g25rrv1yya1611cljgvjh"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags
-       (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:tests? #f  ; no automated test
-       #:phases
-       (modify-phases %standard-phases
+     (list
+      #:make-flags
+      #~(list (string-append "PREFIX=" #$output))
+      #:tests? #f  ; no automated test
+      #:phases
+      '(modify-phases %standard-phases
          (replace 'configure
            (lambda _
              (substitute* "Makefile"
                (("-mtune=native") "")
-               (("-march=native") ""))
-             #t)))))
+               (("-march=native") "")))))))
     (inputs
      (list cairo
            gtk+-2



reply via email to

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