nixpkgs/pkgs/applications/graphics/yacreader/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
840 B
Nix
Raw Normal View History

{ 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
}:
2019-10-30 22:18:41 +00:00
mkDerivation rec {
pname = "yacreader";
2023-01-11 09:02:00 +00:00
version = "9.11.0";
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=";
};
nativeBuildInputs = [ qmake pkg-config ];
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
2022-09-05 07:14:30 +00:00
propagatedBuildInputs = [ qtquickcontrols2 qtgraphicaleffects qtdeclarative ];
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 ];
};
}