[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/09: gnu: zam-plugins: Use new package style.
From: |
guix-commits |
Subject: |
05/09: gnu: zam-plugins: Use new package style. |
Date: |
Tue, 31 Jan 2023 09:25:19 -0500 (EST) |
cbaines pushed a commit to branch master
in repository guix.
commit 75749bbf7b8b70894a7844bf67bc6ec66e21142f
Author: kiasoc5 <kiasoc5@disroot.org>
AuthorDate: Wed Dec 28 18:55:54 2022 -0500
gnu: zam-plugins: Use new package style.
* gnu/packages/music.scm (zam-plugins)[arguments]: Use G-expressions. Use
#$output instead of assoc-ref.
[home-page]: Use https.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/music.scm | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 1a742c1c84..e5aacb54eb 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6111,16 +6111,17 @@ audio and MIDI plugins that can also run as standalone
JACK applications.")
(base32 "0p3y3r2nrhzr0xlcy5rz4c2jsvc10l1n8cwc642r0zppwfabm9il"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ;no "check" target
- #:make-flags
- (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
- "HAVE_ZITA_CONVOLVER=true")
- #:phases
- (modify-phases %standard-phases
- (add-before 'build 'set-CC-variable
- (lambda _
- (setenv "CC" "gcc") #t))
- (delete 'configure))))
+ (list
+ #:tests? #f ;no "check" target
+ #:make-flags
+ #~(list (string-append "PREFIX=" #$output)
+ "HAVE_ZITA_CONVOLVER=true")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'build 'set-CC-variable
+ (lambda _
+ (setenv "CC" "gcc")))
+ (delete 'configure))))
(inputs
(list fftwf
jack-1 ;for the standalone JACK application
@@ -6137,7 +6138,7 @@ LV2 and VST2 formats, as well as standalone JACK
versions. The collection
includes ZaMaximX2, ZamAutoSat, ZamComp, ZamCompX2, ZamEQ2, ZamGEQ31,
ZamHeadX2, ZamPhono, ZamGate, ZamGateX2, ZamTube, ZamDelay, ZamDynamicEQ,
ZaMultiComp, ZaMultiCompX2 and ZamSynth.")
- (home-page "http://www.zamaudio.com/?p=976")
+ (home-page "https://www.zamaudio.com/?p=976")
(license license:gpl2+)))
(define-public geonkick
- branch master updated (de4675d558 -> 38ef37d4bb), guix-commits, 2023/01/31
- 02/09: gnu: x42-plugins: Update to 20221119., guix-commits, 2023/01/31
- 04/09: gnu: zam-plugins: Update to 4.1., guix-commits, 2023/01/31
- 06/09: gnu: go-github-com-andybalholm-cascadia: Update to 1.3.1., guix-commits, 2023/01/31
- 01/09: gnu: guix-build-coordinator: Update to 0-69.8ca5f04., guix-commits, 2023/01/31
- 07/09: gnu: materia-theme: Update to 20210322., guix-commits, 2023/01/31
- 08/09: gnu: arc-theme: Update to 20221218., guix-commits, 2023/01/31
- 09/09: gnu: c-intro-and-ref: Update to 0.0.0-1.47e5a23., guix-commits, 2023/01/31
- 03/09: gnu: x42-plugins: Use new package style., guix-commits, 2023/01/31
- 05/09: gnu: zam-plugins: Use new package style.,
guix-commits <=