9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
29 lines
818 B
Nix
29 lines
818 B
Nix
{ mkDerivation, lib, fetchFromGitHub, qmake, poppler, pkg-config, libunarr
|
|
, libGLU, qtdeclarative, qtgraphicaleffects, qtmultimedia, qtquickcontrols
|
|
, qtscript
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "yacreader";
|
|
version = "9.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YACReader";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "17kzh69sxpyk4n7c2gkbsvr9y4j14azdy1qxzghsbwp7ij4iw9kv";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake pkg-config ];
|
|
buildInputs = [ poppler libunarr libGLU qtmultimedia qtscript ];
|
|
propagatedBuildInputs = [ qtquickcontrols qtgraphicaleffects qtdeclarative ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A comic reader for cross-platform reading and managing your digital comic collection";
|
|
homepage = "http://www.yacreader.com";
|
|
license = lib.licenses.gpl3;
|
|
};
|
|
}
|