mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
37 lines
498 B
Nix
37 lines
498 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
|
|
];
|
|
}
|