mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 14:23:19 +00:00
28 lines
831 B
Nix
28 lines
831 B
Nix
{ mkDerivation, lib, fetchFromGitHub, qmake, poppler, pkg-config, libunarr
|
|
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols2
|
|
, qtscript
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "yacreader";
|
|
version = "9.13.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YACReader";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-kiacyHA/G0TnRH/96RqDTF7vdDnf2POMw/iSgtSRbmM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake pkg-config ];
|
|
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
|
|
propagatedBuildInputs = [ qtquickcontrols2 qtgraphicaleffects qtdeclarative ];
|
|
|
|
meta = {
|
|
description = "A comic reader for cross-platform reading and managing your digital comic collection";
|
|
homepage = "http://www.yacreader.com";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|