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

27 lines
784 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";
2020-09-27 03:44:14 +00:00
version = "9.7.1";
2019-10-30 22:18:41 +00:00
src = fetchFromGitHub {
owner = "YACReader";
repo = pname;
rev = version;
2020-09-27 03:44:14 +00:00
sha256 = "17kzh69sxpyk4n7c2gkbsvr9y4j14azdy1qxzghsbwp7ij4iw9kv";
};
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;
};
}