2024-06-26 16:42:48 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
|
|
pkg-config,
|
|
|
|
curl,
|
|
|
|
boost,
|
|
|
|
liboauth,
|
|
|
|
jsoncpp,
|
|
|
|
htmlcxx,
|
|
|
|
rhash,
|
|
|
|
tinyxml-2,
|
|
|
|
help2man,
|
|
|
|
html-tidy,
|
2024-06-26 18:01:31 +00:00
|
|
|
libsForQt5,
|
2024-06-26 16:42:48 +00:00
|
|
|
testers,
|
|
|
|
lgogdownloader,
|
2023-01-19 17:36:03 +00:00
|
|
|
|
2024-06-26 16:42:48 +00:00
|
|
|
enableGui ? true,
|
2020-11-16 23:52:26 +00:00
|
|
|
}:
|
2015-09-02 17:41:29 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "lgogdownloader";
|
2024-06-26 16:42:22 +00:00
|
|
|
version = "3.14";
|
2015-09-02 17:41:29 +00:00
|
|
|
|
2015-12-24 10:58:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Sude-";
|
|
|
|
repo = "lgogdownloader";
|
2024-06-26 16:42:22 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-pxYiSefscglHN53wvp38Ec4/3X46sWc56Y4YKNtqABQ=";
|
2015-09-02 17:41:29 +00:00
|
|
|
};
|
|
|
|
|
2021-08-26 23:42:04 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
help2man
|
2024-06-26 16:42:22 +00:00
|
|
|
html-tidy
|
2024-06-26 18:01:31 +00:00
|
|
|
] ++ lib.optional enableGui libsForQt5.wrapQtAppsHook;
|
2015-09-02 17:41:29 +00:00
|
|
|
|
2024-06-26 16:42:48 +00:00
|
|
|
buildInputs =
|
|
|
|
[
|
|
|
|
boost
|
|
|
|
curl
|
|
|
|
htmlcxx
|
|
|
|
jsoncpp
|
|
|
|
liboauth
|
|
|
|
rhash
|
|
|
|
tinyxml-2
|
|
|
|
]
|
|
|
|
++ lib.optionals enableGui [
|
2024-06-26 18:01:31 +00:00
|
|
|
libsForQt5.qtbase
|
|
|
|
libsForQt5.qtwebengine
|
2024-06-26 16:42:48 +00:00
|
|
|
];
|
2015-09-02 17:41:29 +00:00
|
|
|
|
2023-01-19 17:36:03 +00:00
|
|
|
cmakeFlags = lib.optional enableGui "-DUSE_QT_GUI=ON";
|
|
|
|
|
2022-02-20 10:24:45 +00:00
|
|
|
passthru.tests = {
|
2022-04-20 14:40:48 +00:00
|
|
|
version = testers.testVersion { package = lgogdownloader; };
|
2022-02-20 10:24:45 +00:00
|
|
|
};
|
2021-08-26 23:37:58 +00:00
|
|
|
|
2024-06-26 16:43:22 +00:00
|
|
|
meta = {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "Unofficial downloader to GOG.com for Linux users. It uses the same API as the official GOGDownloader";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "lgogdownloader";
|
2020-11-16 23:52:26 +00:00
|
|
|
homepage = "https://github.com/Sude-/lgogdownloader";
|
2024-06-26 16:43:22 +00:00
|
|
|
license = lib.licenses.wtfpl;
|
|
|
|
maintainers = with lib.maintainers; [ _0x4A6F ];
|
|
|
|
platforms = lib.platforms.linux;
|
2015-09-02 17:41:29 +00:00
|
|
|
};
|
|
|
|
}
|