nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 qtModule,
3 lib,
4 stdenv,
5 qtbase,
6 qtdeclarative,
7 bluez,
8 pcsclite,
9 pkg-config,
10}:
11
12qtModule {
13 pname = "qtconnectivity";
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
16 pcsclite
17 bluez
18 ];
19 propagatedBuildInputs = [
20 qtbase
21 qtdeclarative
22 ];
23}