repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
kde-frameworks
/
bluez-qt.nix
blob
c07553f8493f7ea0e43280d69b1fb3f88b9934c3
1
{ mkDerivation
2
, extra-cmake-modules
3
, qtbase, qtdeclarative
4
}:
5
6
mkDerivation {
7
pname = "bluez-qt";
8
nativeBuildInputs = [ extra-cmake-modules ];
9
buildInputs = [ qtdeclarative ];
10
propagatedBuildInputs = [ qtbase ];
11
preConfigure = ''
12
substituteInPlace CMakeLists.txt \
13
--replace /lib/udev/rules.d "$bin/lib/udev/rules.d"
14
'';
15
}