1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-16 17:13:21 +00:00

kf517.ki18n: add missing qtdeclarative dependency

This commit is contained in:
Thomas Tuegel 2015-12-12 07:15:07 -06:00
parent e3aa60ed81
commit 54829da822

View file

@ -2,13 +2,14 @@
, extra-cmake-modules
, gettext
, python
, qtdeclarative
, qtscript
}:
kdeFramework {
name = "ki18n";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtscript ];
buildInputs = [ qtdeclarative qtscript ];
propagatedNativeBuildInputs = [ gettext python ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];