guix-commits
[Top][All Lists]
Advanced

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

13/15: gnu: azr3: Use Gexp.


From: guix-commits
Subject: 13/15: gnu: azr3: Use Gexp.
Date: Tue, 7 Feb 2023 05:14:15 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit fb3dfff677e5610897fd0154d764aa9ec208c2e3
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 7 10:50:11 2023 +0100

    gnu: azr3: Use Gexp.
    
    * gnu/packages/audio.scm (azr3)[arguments]: Use Gexp to dispose of %output
    references.
---
 gnu/packages/audio.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index f47da1c37d..132a1018ce 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1106,13 +1106,14 @@ formant warp.")
                                        "azr3-remove-lash.patch"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f ; no check target
-       #:make-flags
-       (list "LV2PEG=ttl2c"
-             (string-append "prefix=" %output)
-             (string-append "pkgdatadir=" %output "/share/azr3-jack"))
-       #:phases
-       (modify-phases %standard-phases
+     (list
+      #:tests? #f ; no check target
+      #:make-flags
+      #~(list "LV2PEG=ttl2c"
+              (string-append "prefix=" #$output)
+              (string-append "pkgdatadir=" #$output "/share/azr3-jack"))
+      #:phases
+      '(modify-phases %standard-phases
          (add-before 'install 'fix-timestamp
            (lambda _
              (let ((early-1980 315619200)) ; 1980-01-02 UTC



reply via email to

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