depot/third_party/nixpkgs/pkgs/development/libraries/qt-6/modules/qtconnectivity.nix

16 lines
221 B
Nix
Raw Normal View History

{ qtModule
, lib
, stdenv
, qtbase
, qtdeclarative
, bluez
, pkg-config
}:
qtModule {
pname = "qtconnectivity";
qtInputs = [ qtbase qtdeclarative ];
buildInputs = [ bluez ];
nativeBuildInputs = [ pkg-config ];
}