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
python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-6
/
modules
/
qtconnectivity.nix
blob
627454f85a517cea444d1ab9b64e93d0956c05ae
1
{
2
qtModule,
3
lib,
4
stdenv,
5
qtbase,
6
qtdeclarative,
7
bluez,
8
pkg-config,
9
}:
10
11
qtModule {
12
pname = "qtconnectivity";
13
nativeBuildInputs = [ pkg-config ];
14
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ bluez ];
15
propagatedBuildInputs = [
16
qtbase
17
qtdeclarative
18
];
19
}