From 8cd4ebd0838db462f5a9ab23d966ff8bc09a8703 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Thu, 11 Aug 2022 10:38:13 +0200 Subject: [PATCH] nongnu: lgogdownloader: Fix build. * nongnu/packages/gog.scm (lgogdownloader)[build-system]: Use qt-build-system. [inputs]: Specify version 5 of Qt inputs. Signed-off-by: Jonathan Brielmaier --- nongnu/packages/gog.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nongnu/packages/gog.scm b/nongnu/packages/gog.scm index 391687d..6c2f023 100644 --- a/nongnu/packages/gog.scm +++ b/nongnu/packages/gog.scm @@ -1,5 +1,5 @@ ;;; Copyright © 2019, 2020 Alex Griffin -;;; Copyright © 2021 Timotej Lazar +;;; Copyright © 2021-2022 Timotej Lazar ;;; ;;; This program is free software: you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ #:use-module (gnu packages xml) #:use-module (guix packages) #:use-module (guix git-download) - #:use-module (guix build-system cmake) + #:use-module (guix build-system qt) #:use-module ((guix licenses) #:prefix license:)) (define-public lgogdownloader @@ -43,7 +43,7 @@ (file-name (git-file-name name version)) (sha256 (base32 "1hbwgwdm1vn7lkz366q9q8f44sk1pvhgjffndwx49lh3md66xps2")))) - (build-system cmake-build-system) + (build-system qt-build-system) (arguments `(#:configure-flags '("-DUSE_QT_GUI=ON") #:tests? #f)) ; no tests @@ -54,9 +54,9 @@ jsoncpp liboauth qtbase-5 - qtdeclarative - qtwebchannel - qtwebengine + qtdeclarative-5 + qtwebchannel-5 + qtwebengine-5 rhash tinyxml2 zlib))