nixpkgs/pkgs/games/lgogdownloader/default.nix

26 lines
786 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-2, help2man }:
stdenv.mkDerivation rec {
name = "lgogdownloader-${version}";
version = "3.5";
2015-12-24 10:58:09 +00:00
src = fetchFromGitHub {
owner = "Sude-";
repo = "lgogdownloader";
rev = "v${version}";
sha256 = "0a3rrkgqwdqxx3ghzw182jx88gzzw6ldp3jasmgnr4l7gpxkmwws";
};
2016-07-11 21:55:57 +00:00
nativeBuildInputs = [ cmake pkgconfig help2man ];
buildInputs = [ curl boost liboauth jsoncpp htmlcxx rhash tinyxml-2 ];
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;
};
}