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 <jonathan.brielmaier@web.de>
This commit is contained in:
Timotej Lazar 2022-08-11 10:38:13 +02:00 committed by Jonathan Brielmaier
parent 58b4e8802a
commit 8cd4ebd083
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -1,5 +1,5 @@
;;; Copyright © 2019, 2020 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2019, 2020 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2021 Timotej Lazar <timotej.lazar@araneo.si> ;;; Copyright © 2021-2022 Timotej Lazar <timotej.lazar@araneo.si>
;;; ;;;
;;; This program is free software: you can redistribute it and/or modify ;;; 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 ;;; it under the terms of the GNU General Public License as published by
@ -27,7 +27,7 @@
#:use-module (gnu packages xml) #:use-module (gnu packages xml)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix build-system cmake) #:use-module (guix build-system qt)
#:use-module ((guix licenses) #:prefix license:)) #:use-module ((guix licenses) #:prefix license:))
(define-public lgogdownloader (define-public lgogdownloader
@ -43,7 +43,7 @@
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1hbwgwdm1vn7lkz366q9q8f44sk1pvhgjffndwx49lh3md66xps2")))) (base32 "1hbwgwdm1vn7lkz366q9q8f44sk1pvhgjffndwx49lh3md66xps2"))))
(build-system cmake-build-system) (build-system qt-build-system)
(arguments (arguments
`(#:configure-flags '("-DUSE_QT_GUI=ON") `(#:configure-flags '("-DUSE_QT_GUI=ON")
#:tests? #f)) ; no tests #:tests? #f)) ; no tests
@ -54,9 +54,9 @@
jsoncpp jsoncpp
liboauth liboauth
qtbase-5 qtbase-5
qtdeclarative qtdeclarative-5
qtwebchannel qtwebchannel-5
qtwebengine qtwebengine-5
rhash rhash
tinyxml2 tinyxml2
zlib)) zlib))