diff options
author | kiasoc5 <kiasoc5@disroot.org> | 2024-08-27 17:00:32 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-10-04 21:29:38 +0200 |
commit | 5d2d395477165320703a01c2a653b11f69fea595 (patch) | |
tree | ef6ffc0c260f4ba0ff5637b1e565dbebaa2b119c | |
parent | 0e0ea72071ef11bf7353619fac1a508dd621bc03 (diff) | |
download | guix-5d2d395477165320703a01c2a653b11f69fea595.tar.gz guix-5d2d395477165320703a01c2a653b11f69fea595.zip |
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 <ludo@gnu.org>
-rw-r--r-- | gnu/packages/gpodder.scm | 4 |
1 files 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)) |