mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
18 lines
396 B
Nix
18 lines
396 B
Nix
{ plasmaPackage, extra-cmake-modules
|
|
, breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, kwayland
|
|
, libXcursor
|
|
}:
|
|
|
|
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
|
|
|
|
plasmaPackage {
|
|
name = "plasma-integration";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
breeze-qt5 kconfig kconfigwidgets kiconthemes kio kwayland
|
|
libXcursor
|
|
];
|
|
}
|