2016-07-11 21:55:57 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, curl, boost, liboauth, jsoncpp
|
2017-03-07 21:12:00 +00:00
|
|
|
, htmlcxx, rhash, tinyxml-2, help2man }:
|
2015-09-02 17:41:29 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "lgogdownloader";
|
2019-05-01 05:57:47 +00:00
|
|
|
version = "3.5";
|
2015-09-02 17:41:29 +00:00
|
|
|
|
2015-12-24 10:58:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Sude-";
|
|
|
|
repo = "lgogdownloader";
|
|
|
|
rev = "v${version}";
|
2019-05-01 05:57:47 +00:00
|
|
|
sha256 = "0a3rrkgqwdqxx3ghzw182jx88gzzw6ldp3jasmgnr4l7gpxkmwws";
|
2015-09-02 17:41:29 +00:00
|
|
|
};
|
|
|
|
|
2016-07-11 21:55:57 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig help2man ];
|
2015-09-02 17:41:29 +00:00
|
|
|
|
2017-03-07 21:12:00 +00:00
|
|
|
buildInputs = [ curl boost liboauth jsoncpp htmlcxx rhash tinyxml-2 ];
|
2015-09-02 17:41:29 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/Sude-/lgogdownloader;
|
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";
|
2015-09-02 17:41:29 +00:00
|
|
|
license = stdenv.lib.licenses.wtfpl;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|