2022-12-19 17:17:39 +01:00
|
|
|
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
2020-04-10 21:58:01 +02:00
|
|
|
;;; Copyright © 2019, 2020 Alex Griffin <a@ajgrf.com>
|
2022-08-11 10:38:13 +02:00
|
|
|
;;; Copyright © 2021-2022 Timotej Lazar <timotej.lazar@araneo.si>
|
2023-06-22 11:55:44 +02:00
|
|
|
;;; Copyright © 2023 Eidvilas Markevičius <markeviciuseidvilas@gmail.com>
|
2019-05-26 20:17:27 +02:00
|
|
|
|
2019-05-26 20:54:01 +02:00
|
|
|
(define-module (nongnu packages gog)
|
2019-05-26 20:32:06 +02:00
|
|
|
#:use-module (gnu packages boost)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages crypto)
|
|
|
|
#:use-module (gnu packages curl)
|
2020-06-22 02:04:13 +02:00
|
|
|
#:use-module (gnu packages man)
|
2019-05-26 20:32:06 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2021-02-15 21:17:26 +01:00
|
|
|
#:use-module (gnu packages qt)
|
2019-05-26 20:32:06 +02:00
|
|
|
#:use-module (gnu packages serialization)
|
|
|
|
#:use-module (gnu packages web)
|
|
|
|
#:use-module (gnu packages xml)
|
2019-05-26 20:17:27 +02:00
|
|
|
#:use-module (guix packages)
|
2019-05-26 20:32:06 +02:00
|
|
|
#:use-module (guix git-download)
|
2022-08-11 10:38:13 +02:00
|
|
|
#:use-module (guix build-system qt)
|
2019-05-26 20:17:27 +02:00
|
|
|
#:use-module ((guix licenses) #:prefix license:))
|
|
|
|
|
2019-05-26 20:32:06 +02:00
|
|
|
(define-public lgogdownloader
|
|
|
|
(package
|
2019-05-29 20:31:27 +02:00
|
|
|
(name "lgogdownloader")
|
2023-06-22 11:55:44 +02:00
|
|
|
(version "3.11")
|
2019-05-29 20:31:27 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/Sude-/lgogdownloader.git")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
2023-06-22 11:55:44 +02:00
|
|
|
(base32 "0mcwl6vfyy91sq1816j4v3lhf06dz1rr58hsq8hqx217z102s86d"))))
|
2022-08-11 10:38:13 +02:00
|
|
|
(build-system qt-build-system)
|
2019-12-03 22:18:29 +01:00
|
|
|
(arguments
|
2021-02-15 21:17:26 +01:00
|
|
|
`(#:configure-flags '("-DUSE_QT_GUI=ON")
|
|
|
|
#:tests? #f)) ; no tests
|
2019-05-29 20:31:27 +02:00
|
|
|
(inputs
|
2022-05-26 23:19:17 +02:00
|
|
|
(list boost
|
|
|
|
curl
|
|
|
|
htmlcxx
|
|
|
|
jsoncpp
|
|
|
|
liboauth
|
|
|
|
qtbase-5
|
2022-08-11 10:38:13 +02:00
|
|
|
qtdeclarative-5
|
|
|
|
qtwebchannel-5
|
|
|
|
qtwebengine-5
|
2022-05-26 23:19:17 +02:00
|
|
|
rhash
|
|
|
|
tinyxml2
|
|
|
|
zlib))
|
2019-05-29 20:31:27 +02:00
|
|
|
(native-inputs
|
2022-05-26 23:19:17 +02:00
|
|
|
(list help2man
|
|
|
|
pkg-config))
|
2019-05-29 20:31:27 +02:00
|
|
|
(home-page "https://sites.google.com/site/gogdownloader/")
|
|
|
|
(synopsis "Downloader for GOG.com files")
|
|
|
|
(description "LGOGDownloader is a client for the GOG.com download API,
|
2019-05-26 20:32:06 +02:00
|
|
|
allowing simple downloads and updates of games and other files from GOG.com.")
|
2019-05-29 20:31:27 +02:00
|
|
|
(license license:wtfpl2)))
|