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
forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-6
/
modules
/
qtconnectivity.nix
blob
8a48c84904352b9b5efbe9df105d7d4deb2de22e
1
{ qtModule
2
, lib
3
, stdenv
4
, qtbase
5
, qtdeclarative
6
, bluez
7
, pkg-config
8
}:
9
10
qtModule {
11
pname = "qtconnectivity";
12
nativeBuildInputs = [ pkg-config ];
13
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ bluez ];
14
propagatedBuildInputs = [
15
qtbase
16
qtdeclarative
17
];
18
}