2021-08-27 00:42:04 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-11-16 23:52:26 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2021-01-17 05:49:22 +00:00
|
|
|
, pkg-config
|
2020-11-16 23:52:26 +00:00
|
|
|
, curl
|
|
|
|
, boost
|
|
|
|
, liboauth
|
|
|
|
, jsoncpp
|
|
|
|
, htmlcxx
|
|
|
|
, rhash
|
|
|
|
, tinyxml-2
|
|
|
|
, help2man
|
|
|
|
}:
|
2015-09-02 18:41:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lgogdownloader";
|
2021-08-26 09:28:23 +01:00
|
|
|
version = "3.8";
|
2015-09-02 18:41:29 +01:00
|
|
|
|
2015-12-24 10:58:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Sude-";
|
|
|
|
repo = "lgogdownloader";
|
|
|
|
rev = "v${version}";
|
2021-08-26 09:28:23 +01:00
|
|
|
sha256 = "sha256-LywFJCZevlhthOkAZo7JkXcPT9V6Zh28VD/MVQnMQjo=";
|
2015-09-02 18:41:29 +01:00
|
|
|
};
|
|
|
|
|
2021-08-27 00:42:04 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
help2man
|
|
|
|
];
|
2015-09-02 18:41:29 +01:00
|
|
|
|
2021-08-27 00:42:04 +01:00
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
curl
|
|
|
|
htmlcxx
|
|
|
|
jsoncpp
|
|
|
|
liboauth
|
|
|
|
rhash
|
|
|
|
tinyxml-2
|
|
|
|
];
|
2015-09-02 18:41:29 +01:00
|
|
|
|
2021-08-27 00:37:58 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
if [[ "$("$out/bin/${pname}" --version)" == "LGOGDownloader ${version}" ]]; then
|
|
|
|
echo '${pname} smoke check passed'
|
|
|
|
else
|
|
|
|
echo '${pname} smoke check failed'
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
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";
|
2020-11-16 23:52:26 +00:00
|
|
|
homepage = "https://github.com/Sude-/lgogdownloader";
|
|
|
|
license = licenses.wtfpl;
|
2021-08-25 14:17:48 +01:00
|
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
2020-11-16 23:52:26 +00:00
|
|
|
platforms = platforms.linux;
|
2015-09-02 18:41:29 +01:00
|
|
|
};
|
|
|
|
}
|