nixpkgs/pkgs/games/lgogdownloader/default.nix

26 lines
783 B
Nix
Raw Normal View History

2016-07-11 21:55:57 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, curl, boost, liboauth, jsoncpp
, htmlcxx, rhash, tinyxml, help2man }:
stdenv.mkDerivation rec {
name = "lgogdownloader-${version}";
2016-07-11 21:55:57 +00:00
version = "2.28";
2015-12-24 10:58:09 +00:00
src = fetchFromGitHub {
owner = "Sude-";
repo = "lgogdownloader";
rev = "v${version}";
2016-07-11 21:55:57 +00:00
sha256 = "1xn6pfvxz496sj5jiqyzqj6vn6vrzyks9f6xha8g4vy6hkw717ag";
};
2016-07-11 21:55:57 +00:00
nativeBuildInputs = [ cmake pkgconfig help2man ];
2016-07-11 21:55:57 +00:00
buildInputs = [ curl boost liboauth jsoncpp htmlcxx rhash tinyxml ];
meta = {
homepage = https://github.com/Sude-/lgogdownloader;
description = "Unofficial downloader to GOG.com for Linux users. It uses the same API as the official GOGDownloader";
license = stdenv.lib.licenses.wtfpl;
platforms = stdenv.lib.platforms.linux;
};
}