nixpkgs-suyu/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 09:14:30 +02:00
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols2
2019-10-30 23:18:41 +01:00
, qtscript
}:
2019-10-30 23:18:41 +01:00
mkDerivation rec {
pname = "yacreader";
2022-11-01 12:11:48 +01:00
version = "9.10.0";
2019-10-30 23:18:41 +01:00
src = fetchFromGitHub {
owner = "YACReader";
repo = pname;
rev = version;
2022-11-01 12:11:48 +01:00
sha256 = "sha256-77+lsEvmwQ34maW+HA/IpPsEezlzYEYipc74yR6inwU=";
};
nativeBuildInputs = [ qmake pkg-config ];
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
2022-09-05 09:14:30 +02:00
propagatedBuildInputs = [ qtquickcontrols2 qtgraphicaleffects qtdeclarative ];
meta = {
description = "A comic reader for cross-platform reading and managing your digital comic collection";
2019-10-30 23:18:41 +01:00
homepage = "http://www.yacreader.com";
license = lib.licenses.gpl3;
2022-10-06 18:15:16 +02:00
maintainers = with lib.maintainers; [ srapenne ];
};
}