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

17 lines
509 B
Nix
Raw Normal View History

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