mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
19 lines
456 B
Nix
19 lines
456 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
|
|
];
|
|
}
|