guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: sfizz: Improve package style.


From: guix-commits
Subject: 02/04: gnu: sfizz: Improve package style.
Date: Tue, 20 Dec 2022 05:16:53 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 851fbac0a99f7659d1bc1c9486d2505855b0daa8
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Dec 20 11:01:57 2022 +0100

    gnu: sfizz: Improve package style.
    
    * gnu/packages/music.scm (sfizz)[arguments]: Use G-expressions.
    [inputs]: Remove input labels.
---
 gnu/packages/music.scm | 35 ++++++++++++++++++-----------------
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index a14719f89a..5be767a138 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -4749,26 +4749,27 @@ standalone JACK client and an LV2 plugin is also 
available.")
                             "src/external/pugixml")))))
     (build-system cmake-build-system)
     (arguments
-     `(#:configure-flags
-       (list "-DSFIZZ_LV2_UI=OFF"
-             "-DSFIZZ_VST=OFF"
-             "-DSFIZZ_VST2=OFF"
-             "-DSFIZZ_TESTS=ON"
-             "-DSFIZZ_USE_SYSTEM_ABSEIL=ON"
-             "-DSFIZZ_USE_SYSTEM_PUGIXML=ON"
-             ;; XXX: Guix SIMDe version 0.7.2 is not enough.
-             ;; "-DSFIZZ_USE_SYSTEM_SIMDE=ON"
-             )))
+     (list
+      #:configure-flags
+      #~(list "-DSFIZZ_LV2_UI=OFF"
+              "-DSFIZZ_VST=OFF"
+              "-DSFIZZ_VST2=OFF"
+              "-DSFIZZ_TESTS=ON"
+              "-DSFIZZ_USE_SYSTEM_ABSEIL=ON"
+              "-DSFIZZ_USE_SYSTEM_PUGIXML=ON"
+              ;; XXX: Guix SIMDe version 0.7.2 is not enough.
+              ;; "-DSFIZZ_USE_SYSTEM_SIMDE=ON"
+              )))
     (native-inputs
      (list pkg-config))
     (inputs
-     `(("abseil-cpp" ,abseil-cpp)
-       ("glib" ,glib)
-       ("jack" ,jack-2)
-       ("lv2" ,lv2)
-       ("libsamplerate" ,libsamplerate)
-       ("pugixml" ,pugixml)
-       ("simde" ,simde)))
+     (list abseil-cpp
+           glib
+           jack-2
+           lv2
+           libsamplerate
+           pugixml
+           simde))
     (home-page "https://sfz.tools/sfizz/";)
     (synopsis "SFZ parser and synth library")
     (description "Sfizz provides an SFZ parser and synth C++ library.  It



reply via email to

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