summaryrefslogtreecommitdiff
path: root/nongnu/packages/gog.scm
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.si>2021-02-15 21:17:26 +0100
committerJonathan Brielmaier <jonathan.brielmaier@web.de>2021-02-21 16:39:43 +0100
commit0da7b3710f19fe5ee25825583267ac7247ff0918 (patch)
tree4911b2e61712fe0a560519ab2ea2a653f91602c2 /nongnu/packages/gog.scm
parent6080d68a49dccd03f9682d15c15621339cd69753 (diff)
nongnu: lgogdownloader: Add captcha support.
* nongnu/packages/gog.scm (lgogdownloader) [inputs]: Add qtbase, qtdeclarative, qtwebchannel and qtwebengine. [arguments]: Configure with GUI support. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
Diffstat (limited to 'nongnu/packages/gog.scm')
-rw-r--r--nongnu/packages/gog.scm9
1 files changed, 8 insertions, 1 deletions
diff --git a/nongnu/packages/gog.scm b/nongnu/packages/gog.scm
index f60a68c..770dd22 100644
--- a/nongnu/packages/gog.scm
+++ b/nongnu/packages/gog.scm
@@ -1,4 +1,5 @@
;;; Copyright © 2019, 2020 Alex Griffin <a@ajgrf.com>
+;;; Copyright © 2021 Timotej Lazar <timotej.lazar@araneo.si>
;;;
;;; 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
@@ -20,6 +21,7 @@
#:use-module (gnu packages curl)
#:use-module (gnu packages man)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages qt)
#:use-module (gnu packages serialization)
#:use-module (gnu packages web)
#:use-module (gnu packages xml)
@@ -43,13 +45,18 @@
(base32 "02zn4zc9hqym81vbs88x5ayk2xb808jlvfyvn96ksx1ai4b6a4fz"))))
(build-system cmake-build-system)
(arguments
- `(#:tests? #f)) ; no tests
+ `(#:configure-flags '("-DUSE_QT_GUI=ON")
+ #:tests? #f)) ; no tests
(inputs
`(("boost" ,boost)
("curl" ,curl)
("htmlcxx" ,htmlcxx)
("jsoncpp" ,jsoncpp)
("liboauth" ,liboauth)
+ ("qtbase" ,qtbase)
+ ("qtdeclarative" ,qtdeclarative)
+ ("qtwebchannel" ,qtwebchannel)
+ ("qtwebengine" ,qtwebengine)
("rhash" ,rhash)
("tinyxml2" ,tinyxml2)
("zlib" ,zlib)))