09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
17 lines
333 B
Nix
17 lines
333 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, gettext
|
|
, python
|
|
, qtdeclarative
|
|
, qtscript
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "ki18n";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtdeclarative qtscript ];
|
|
propagatedNativeBuildInputs = [ gettext python ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|