c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
36 lines
611 B
Nix
36 lines
611 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, breeze-qt5
|
|
, kconfig
|
|
, kconfigwidgets
|
|
, kiconthemes
|
|
, kio
|
|
, knotifications
|
|
, kwayland
|
|
, libXcursor
|
|
, qtquickcontrols2
|
|
, wayland
|
|
, wayland-protocols
|
|
, plasma-wayland-protocols
|
|
}:
|
|
|
|
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
|
|
|
|
mkDerivation {
|
|
pname = "plasma-integration";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
breeze-qt5
|
|
kconfig
|
|
kconfigwidgets
|
|
kiconthemes
|
|
kio
|
|
knotifications
|
|
kwayland
|
|
libXcursor
|
|
qtquickcontrols2
|
|
wayland
|
|
wayland-protocols
|
|
plasma-wayland-protocols
|
|
];
|
|
}
|