ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, curl
|
|
, boost
|
|
, liboauth
|
|
, jsoncpp
|
|
, htmlcxx
|
|
, rhash
|
|
, tinyxml-2
|
|
, help2man
|
|
, wrapQtAppsHook
|
|
, qtbase
|
|
, qtwebengine
|
|
, testers
|
|
, lgogdownloader
|
|
|
|
, enableGui ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lgogdownloader";
|
|
version = "3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Sude-";
|
|
repo = "lgogdownloader";
|
|
rev = "v${version}";
|
|
hash = "sha256-IjZizO0HWDqtviY3TZ3AYYm5A0sU74YXjfFEtvQvv04=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
help2man
|
|
] ++ lib.optional enableGui wrapQtAppsHook;
|
|
|
|
buildInputs = [
|
|
boost
|
|
curl
|
|
htmlcxx
|
|
jsoncpp
|
|
liboauth
|
|
rhash
|
|
tinyxml-2
|
|
] ++ lib.optionals enableGui [
|
|
qtbase
|
|
qtwebengine
|
|
];
|
|
|
|
cmakeFlags = lib.optional enableGui "-DUSE_QT_GUI=ON";
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion { package = lgogdownloader; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Unofficial downloader to GOG.com for Linux users. It uses the same API as the official GOGDownloader";
|
|
mainProgram = "lgogdownloader";
|
|
homepage = "https://github.com/Sude-/lgogdownloader";
|
|
license = licenses.wtfpl;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|