mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
17 lines
392 B
Nix
17 lines
392 B
Nix
{ mkDerivation, lib
|
|
, extra-cmake-modules
|
|
, qtbase, qtdeclarative
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "bluez-qt";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtdeclarative ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
preConfigure = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace /lib/udev/rules.d "$bin/lib/udev/rules.d"
|
|
'';
|
|
meta.platforms = lib.platforms.linux;
|
|
}
|