summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kactivities.nix
blob: eabac6aadd7e352b879d4b9baa0ce468e0e8beaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkDerivation, lib,
  extra-cmake-modules,
  boost, kconfig, kcoreaddons, kio, kwindowsystem, qtbase, qtdeclarative,
}:

mkDerivation {
  name = "kactivities";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    boost kconfig kcoreaddons kio kwindowsystem qtdeclarative
  ];
  propagatedBuildInputs = [ qtbase ];
}