summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/kde-frameworks/bluez-qt.nix
blob: 93c945b58ca4adb3e4932a9fbc7c223525fcf695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ kdeFramework, lib
, extra-cmake-modules
, qtdeclarative
}:

kdeFramework {
  name = "bluez-qt";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ qtdeclarative ];
  preConfigure = ''
    substituteInPlace CMakeLists.txt \
      --replace /lib/udev/rules.d "$out/lib/udev/rules.d"
  '';
}