summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kdbusaddons.nix
blob: 5c435b4454145a654baa2fce889a640f4830a432 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  mkDerivation,
  extra-cmake-modules,
  qtbase, qttools, qtx11extras
}:

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