mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 22:03:13 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
42 lines
824 B
Nix
42 lines
824 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
|
|
];
|
|
|
|
meta = {
|
|
description = "Set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace";
|
|
homepage = "https://invent.kde.org/plasma/plasma-integration";
|
|
};
|
|
}
|