nixpkgs/pkgs/games/lgogdownloader/default.nix

37 lines
782 B
Nix
Raw Permalink 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";
2020-11-16 23:52:26 +00:00
version = "3.7";
2015-12-24 10:58:09 +00:00
src = fetchFromGitHub {
owner = "Sude-";
repo = "lgogdownloader";
rev = "v${version}";
2020-11-16 23:52:26 +00:00
sha256 = "sha256-3xFlFokqdD1Nstu7TSUCaHUxvSodIb12QNVjmNgn9gs=";
};
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;
platforms = platforms.linux;
};
}