civodul pushed a commit to branch master
in repository guix.

commit 5d2d395477165320703a01c2a653b11f69fea595
Author: kiasoc5 <[email protected]>
AuthorDate: Tue Aug 27 17:00:32 2024 -0400

    gnu: libmygpo-qt: Improve package style.
    
    * gnu/packages/gpodder.scm (libmygpo-qt)[inputs]: Remove input labels.
    [arguments]: Switch from quasiquote to quote.
    
    Change-Id: If258f1e7ef5d291e5452e3d540564c13d86801ef
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/gpodder.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm
index e77cd39bcf..1073af0f3b 100644
--- a/gnu/packages/gpodder.scm
+++ b/gnu/packages/gpodder.scm
@@ -147,9 +147,9 @@ locally for later listening.")
     (native-inputs
      (list pkg-config))
     (inputs
-     `(("qt" ,qtbase-5)))
+     (list qtbase-5))
     (arguments
-     `(#:configure-flags '("-DMYGPO_BUILD_TESTS=ON")
+     '(#:configure-flags '("-DMYGPO_BUILD_TESTS=ON")
        ;; TODO: Enable tests when https://github.com/gpodder/gpodder/issues/446
        ;; is fixed.
        #:tests? #f))

Reply via email to