18 lines
368 B
Nix
18 lines
368 B
Nix
|
{ kdeFramework, lib
|
||
|
, extra-cmake-modules
|
||
|
, qtdeclarative
|
||
|
}:
|
||
|
|
||
|
kdeFramework {
|
||
|
name = "bluez-qt";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
buildInputs = [ qtdeclarative ];
|
||
|
preConfigure = ''
|
||
|
substituteInPlace CMakeLists.txt \
|
||
|
--replace /lib/udev/rules.d "$out/lib/udev/rules.d"
|
||
|
'';
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|