3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/lgogdownloader/default.nix

61 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-27 00:42:04 +01: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
}:
stdenv.mkDerivation rec {
pname = "lgogdownloader";
2021-08-26 09:28:23 +01:00
version = "3.8";
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=";
};
2021-08-27 00:42:04 +01:00
nativeBuildInputs = [
cmake
pkg-config
help2man
];
2021-08-27 00:42:04 +01:00
buildInputs = [
boost
curl
htmlcxx
jsoncpp
liboauth
rhash
tinyxml-2
];
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
'';
meta = with lib; {
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;
maintainers = with maintainers; [ _0x4A6F ];
2020-11-16 23:52:26 +00:00
platforms = platforms.linux;
};
}