nixpkgs/pkgs/development/libraries/kde-frameworks/frameworkintegration.nix

17 lines
509 B
Nix
Raw Normal View History

2017-01-14 08:44:40 -06:00
{
kdeFramework, lib,
ecm,
kbookmarks, kcompletion, kconfig, kconfigwidgets, ki18n, kiconthemes, kio,
knewstuff, knotifications, kpackage, kwidgetsaddons, libXcursor, qtx11extras
2016-04-21 10:32:21 -05:00
}:
kdeFramework {
name = "frameworkintegration";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-07-30 09:36:52 -05:00
nativeBuildInputs = [ ecm ];
propagatedBuildInputs = [
2016-12-13 17:53:43 -06:00
kbookmarks kcompletion kconfig kconfigwidgets ki18n kio kiconthemes
2017-01-14 08:44:40 -06:00
knewstuff knotifications kpackage kwidgetsaddons libXcursor qtx11extras
2016-04-21 10:32:21 -05:00
];
}