1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/games/lgogdownloader/default.nix

37 lines
782 B
Nix
Raw Normal View History

2020-11-16 23:52:26 +00:00
{ stdenv
, fetchFromGitHub
, cmake
, pkgconfig
, 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=";
};
2016-07-11 22:55:57 +01:00
nativeBuildInputs = [ cmake pkgconfig help2man ];
2020-11-16 23:52:26 +00:00
buildInputs = [ boost curl htmlcxx jsoncpp liboauth rhash tinyxml-2 ];
2020-11-16 23:52:26 +00:00
meta = with stdenv.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;
};
}