nixpkgs/pkgs/games/lgogdownloader/default.nix

38 lines
831 B
Nix
Raw Normal View History

{ 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 08:28:23 +00:00
version = "3.8";
2015-12-24 10:58:09 +00:00
src = fetchFromGitHub {
owner = "Sude-";
repo = "lgogdownloader";
rev = "v${version}";
2021-08-26 08:28:23 +00:00
sha256 = "sha256-LywFJCZevlhthOkAZo7JkXcPT9V6Zh28VD/MVQnMQjo=";
};
nativeBuildInputs = [ cmake pkg-config help2man ];
2020-11-16 23:52:26 +00:00
buildInputs = [ boost curl htmlcxx jsoncpp liboauth rhash tinyxml-2 ];
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;
};
}