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