summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/bluez-qt.nix
blob: 93c945b58ca4adb3e4932a9fbc7c223525fcf695 (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
                     




                    
                                                        
                                              
                                            



                                                         
 
{ 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"
  '';
}