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

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

27 lines
783 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, qmake, poppler, pkg-config, libunarr
2019-10-30 22:18:41 +00:00
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols
, qtscript
}:
2019-10-30 22:18:41 +00:00
mkDerivation rec {
pname = "yacreader";
2021-08-14 11:57:38 +00:00
version = "9.8.2";
2019-10-30 22:18:41 +00:00
src = fetchFromGitHub {
owner = "YACReader";
repo = pname;
rev = version;
2021-08-14 11:57:38 +00:00
sha256 = "sha256-Xvf0xXtMs3x1fPgAvS4GJXrZgDZWhzIgrOF4yECr7/g=";
};
nativeBuildInputs = [ qmake pkg-config ];
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
propagatedBuildInputs = [ qtquickcontrols 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;
};
}