2021-01-19 07:50:56 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, qmake, poppler, pkg-config, libunarr
|
2022-09-05 09:14:30 +02:00
|
|
|
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols2
|
2019-10-30 23:18:41 +01:00
|
|
|
, qtscript
|
2018-11-04 11:22:56 +01:00
|
|
|
}:
|
|
|
|
|
2019-10-30 23:18:41 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "yacreader";
|
2022-11-01 12:11:48 +01:00
|
|
|
version = "9.10.0";
|
2018-11-04 11:22:56 +01:00
|
|
|
|
2019-10-30 23:18:41 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "YACReader";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-11-01 12:11:48 +01:00
|
|
|
sha256 = "sha256-77+lsEvmwQ34maW+HA/IpPsEezlzYEYipc74yR6inwU=";
|
2018-11-04 11:22:56 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ qmake pkg-config ];
|
2018-11-04 11:22:56 +01:00
|
|
|
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
|
2022-09-05 09:14:30 +02:00
|
|
|
propagatedBuildInputs = [ qtquickcontrols2 qtgraphicaleffects qtdeclarative ];
|
2018-11-04 11:22:56 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A comic reader for cross-platform reading and managing your digital comic collection";
|
2019-10-30 23:18:41 +01:00
|
|
|
homepage = "http://www.yacreader.com";
|
|
|
|
license = lib.licenses.gpl3;
|
2022-10-06 18:15:16 +02:00
|
|
|
maintainers = with lib.maintainers; [ srapenne ];
|
2018-11-04 11:22:56 +01:00
|
|
|
};
|
|
|
|
}
|