From 5d2d395477165320703a01c2a653b11f69fea595 Mon Sep 17 00:00:00 2001 From: kiasoc5 Date: Tue, 27 Aug 2024 17:00:32 -0400 Subject: [PATCH] gnu: libmygpo-qt: Improve package style. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- 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 @@ (define-public libmygpo-qt (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))