From fb3dfff677e5610897fd0154d764aa9ec208c2e3 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 7 Feb 2023 10:50:11 +0100 Subject: 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(-) (limited to 'gnu/packages/audio.scm') 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 -- cgit 1.4.1