1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 09:03:48 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/bluez-qt.nix

16 lines
372 B
Nix
Raw Normal View History

2016-04-21 16:32:21 +01:00
{ kdeFramework, lib
, extra-cmake-modules
2016-04-21 16:32:21 +01:00
, qtdeclarative
}:
kdeFramework {
name = "bluez-qt";
2016-07-30 15:36:52 +01:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ qtdeclarative ];
2016-04-21 16:32:21 +01:00
preConfigure = ''
substituteInPlace CMakeLists.txt \
--replace /lib/udev/rules.d "$out/lib/udev/rules.d"
'';
}