2017-05-22 11:49:07 -07:00
|
|
|
{
|
|
|
|
mkDerivation,
|
|
|
|
extra-cmake-modules,
|
|
|
|
breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, knotifications,
|
2017-10-10 21:29:30 -07:00
|
|
|
kwayland, libXcursor, qtquickcontrols2
|
2016-06-06 14:08:33 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
|
|
|
|
|
2017-05-15 09:44:58 -07:00
|
|
|
mkDerivation {
|
2016-06-06 14:08:33 -07:00
|
|
|
name = "plasma-integration";
|
2017-05-22 11:49:07 -07:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2016-06-06 14:08:33 -07:00
|
|
|
buildInputs = [
|
2017-05-22 11:49:07 -07:00
|
|
|
breeze-qt5 kconfig kconfigwidgets kiconthemes kio knotifications kwayland
|
2017-10-10 21:29:30 -07:00
|
|
|
libXcursor qtquickcontrols2
|
2016-06-06 14:08:33 -07:00
|
|
|
];
|
2018-02-02 04:20:32 -08:00
|
|
|
patches = [
|
|
|
|
# See also: https://phabricator.kde.org/D9070
|
|
|
|
# ttuegel: The patch is checked into Nixpkgs because I could not get
|
|
|
|
# Phabricator to give me a stable link to it.
|
|
|
|
./D9070.patch
|
|
|
|
];
|
|
|
|
patchFlags = "-p0";
|
2016-06-06 14:08:33 -07:00
|
|
|
}
|