43 lines
743 B
Nix
43 lines
743 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";
|
|
mainProgram = "plasma-browser-integration-host";
|
|
homepage = "https://community.kde.org/Plasma/Browser_Integration";
|
|
};
|
|
}
|