nixpkgs/pkgs/desktops/plasma-5/plasma-browser-integration.nix
LoveIsGrief 408b28e988
libsForQt5: Add description and home page for kde integrations
For those who don't know what the projects are, this helps clear that up without any additional searches

Closes #152293
2023-06-04 12:59:14 +02:00

42 lines
674 B
Nix

{ mkDerivation
, extra-cmake-modules
, qtbase
, kfilemetadata
, kio
, ki18n
, kconfig
, kdbusaddons
, knotifications
, kpurpose
, krunner
, kwindowsystem
, kactivities
, plasma-workspace
}:
mkDerivation {
pname = "plasma-browser-integration";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
qtbase
kfilemetadata
kio
ki18n
kconfig
kdbusaddons
knotifications
kpurpose
krunner
kwindowsystem
kactivities
plasma-workspace
];
meta = {
description = "Components necessary to integrate browsers into the Plasma Desktop";
homepage = "https://community.kde.org/Plasma/Browser_Integration";
};
}