408b28e988
For those who don't know what the projects are, this helps clear that up without any additional searches Closes #152293
41 lines
674 B
Nix
41 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";
|
|
};
|
|
}
|