nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/plasma-framework/default.nix

26 lines
817 B
Nix
Raw Normal View History

2015-10-10 16:58:23 +02:00
{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive
, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio
, knotifications, kpackage, kservice, kwindowsystem, kxmlgui
2015-10-18 16:24:59 +02:00
, makeQtWrapper, qtscript, qtx11extras
2015-09-27 17:02:10 +02:00
}:
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "plasma-framework";
2015-10-18 16:24:59 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
2015-09-27 17:02:10 +02:00
buildInputs = [
2015-10-10 18:30:10 +02:00
karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons
2015-10-10 19:42:19 +02:00
kiconthemes knotifications kxmlgui qtscript
2015-10-10 18:30:10 +02:00
];
propagatedBuildInputs = [
2015-10-10 19:42:19 +02:00
kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem
2015-10-10 18:50:36 +02:00
qtx11extras
2015-09-27 17:02:10 +02:00
];
postInstall = ''
2015-10-18 16:24:59 +02:00
wrapQtProgram "$out/bin/plasmapkg2"
2015-09-27 17:02:10 +02:00
'';
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}