c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
27 lines
839 B
Nix
27 lines
839 B
Nix
{ mkDerivation, lib, fetchFromGitHub, qmake, poppler, pkg-config, libunarr
|
|
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols2
|
|
, qtscript
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "yacreader";
|
|
version = "9.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YACReader";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-rurJkCIuHTWxIGb+TTHp8sQS26/5W/sdtWFxyeqVx54=";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake pkg-config ];
|
|
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
|
|
propagatedBuildInputs = [ qtquickcontrols2 qtgraphicaleffects qtdeclarative ];
|
|
|
|
meta = {
|
|
description = "A comic reader for cross-platform reading and managing your digital comic collection";
|
|
homepage = "http://www.yacreader.com";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ srapenne ];
|
|
};
|
|
}
|