2021-01-19 06:50:56 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, qmake, poppler, pkg-config, libunarr
|
2019-10-30 22:18:41 +00:00
|
|
|
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols
|
|
|
|
, qtscript
|
2018-11-04 10:22:56 +00:00
|
|
|
}:
|
|
|
|
|
2019-10-30 22:18:41 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "yacreader";
|
2020-09-27 04:44:14 +01:00
|
|
|
version = "9.7.1";
|
2018-11-04 10:22:56 +00:00
|
|
|
|
2019-10-30 22:18:41 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "YACReader";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-09-27 04:44:14 +01:00
|
|
|
sha256 = "17kzh69sxpyk4n7c2gkbsvr9y4j14azdy1qxzghsbwp7ij4iw9kv";
|
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 ];
|
|
|
|
propagatedBuildInputs = [ qtquickcontrols qtgraphicaleffects qtdeclarative ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
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;
|
2018-11-04 10:22:56 +00:00
|
|
|
};
|
|
|
|
}
|