1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:28:51 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/frameworkintegration.nix

15 lines
495 B
Nix
Raw Normal View History

2016-04-21 16:32:21 +01:00
{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion
, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications
, kwidgetsaddons, libXcursor, qtx11extras
}:
kdeFramework {
name = "frameworkintegration";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 16:32:21 +01:00
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [
kbookmarks kcompletion kconfig kconfigwidgets knotifications ki18n kio
kiconthemes kwidgetsaddons libXcursor qtx11extras
2016-04-21 16:32:21 +01:00
];
}