nixpkgs/pkgs/games/lgogdownloader/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
995 B
Nix
Raw Normal View History

2021-08-26 23:42:04 +00:00
{ 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
, testers
2022-02-20 10:24:45 +00:00
, lgogdownloader
2020-11-16 23:52:26 +00:00
}:
stdenv.mkDerivation rec {
pname = "lgogdownloader";
2022-02-20 10:24:45 +00:00
version = "3.9";
2015-12-24 10:58:09 +00:00
src = fetchFromGitHub {
owner = "Sude-";
repo = "lgogdownloader";
rev = "v${version}";
2022-02-20 10:24:45 +00:00
sha256 = "sha256-Qt9uTKsD0kQ6b9Y5+eC+YWpCHMIJGzP+pMfuUBt/fME=";
};
2021-08-26 23:42:04 +00:00
nativeBuildInputs = [
cmake
pkg-config
help2man
];
2021-08-26 23:42:04 +00:00
buildInputs = [
boost
curl
htmlcxx
jsoncpp
liboauth
rhash
tinyxml-2
];
2022-02-20 10:24:45 +00:00
passthru.tests = {
version = testers.testVersion { package = lgogdownloader; };
2022-02-20 10:24:45 +00:00
};
2021-08-26 23:37:58 +00:00
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;
};
}