5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
28 lines
838 B
Nix
28 lines
838 B
Nix
{ mkDerivation, lib, fetchFromGitHub, qmake, poppler, pkg-config, libunarr
|
|
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols2
|
|
, qtscript
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "yacreader";
|
|
version = "9.14.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YACReader";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-gQ4Aaapini6j3lCtowFbrfwbe91aFl50hp1EfxTO8uY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake pkg-config ];
|
|
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
|
|
propagatedBuildInputs = [ qtquickcontrols2 qtgraphicaleffects qtdeclarative ];
|
|
|
|
meta = {
|
|
description = "Comic reader for cross-platform reading and managing your digital comic collection";
|
|
homepage = "http://www.yacreader.com";
|
|
license = lib.licenses.gpl3;
|
|
mainProgram = "YACReader";
|
|
maintainers = [ ];
|
|
};
|
|
}
|