nixpkgs/pkgs/games/lgogdownloader/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.2 KiB
Nix
Raw Normal View History

2021-08-26 23:42:04 +00:00
{ lib
, stdenv
2020-11-16 23:52:26 +00:00
, fetchFromGitHub
, cmake
, pkg-config
2020-11-16 23:52:26 +00:00
, curl
, boost
, liboauth
, jsoncpp
, htmlcxx
, rhash
, tinyxml-2
, help2man
2023-01-19 17:36:03 +00:00
, wrapQtAppsHook
, qtbase
, qtwebengine
, testers
2022-02-20 10:24:45 +00:00
, lgogdownloader
2023-01-19 17:36:03 +00:00
, enableGui ? true
2020-11-16 23:52:26 +00:00
}:
stdenv.mkDerivation rec {
pname = "lgogdownloader";
2023-10-23 12:18:22 +00:00
version = "3.12";
2015-12-24 10:58:09 +00:00
src = fetchFromGitHub {
owner = "Sude-";
repo = "lgogdownloader";
rev = "v${version}";
2023-10-23 12:18:22 +00:00
hash = "sha256-IjZizO0HWDqtviY3TZ3AYYm5A0sU74YXjfFEtvQvv04=";
};
2021-08-26 23:42:04 +00:00
nativeBuildInputs = [
cmake
pkg-config
help2man
2023-01-19 17:36:03 +00:00
] ++ lib.optional enableGui wrapQtAppsHook;
2021-08-26 23:42:04 +00:00
buildInputs = [
boost
curl
htmlcxx
jsoncpp
liboauth
rhash
tinyxml-2
2023-01-19 17:36:03 +00:00
] ++ lib.optionals enableGui [
qtbase
qtwebengine
2021-08-26 23:42:04 +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 = {
version = testers.testVersion { package = lgogdownloader; };
2022-02-20 10:24:45 +00:00
};
2021-08-26 23:37:58 +00:00
meta = with lib; {
description = "Unofficial downloader to GOG.com for Linux users. It uses the same API as the official GOGDownloader";
mainProgram = "lgogdownloader";
2020-11-16 23:52:26 +00:00
homepage = "https://github.com/Sude-/lgogdownloader";
license = licenses.wtfpl;
maintainers = with maintainers; [ _0x4A6F ];
2020-11-16 23:52:26 +00:00
platforms = platforms.linux;
};
}