summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/kde-frameworks/kdbusaddons.nix
blob: f06b3f69910e46961b060529400b5131c204aad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  mkDerivation,
  cmake,
  extra-cmake-modules,
  qtbase,
  qttools,
  qtx11extras,
}:

mkDerivation {
  pname = "kdbusaddons";
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];
  buildInputs = [
    qttools
    qtx11extras
  ];
  propagatedBuildInputs = [ qtbase ];
}