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

17 lines
509 B
Nix
Raw Normal View History

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