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

19 lines
247 B
Nix

{
qtModule,
qtbase,
qtdeclarative,
qtsvg,
hunspell,
pkg-config,
}:
qtModule {
pname = "qtvirtualkeyboard";
propagatedBuildInputs = [
qtbase
qtdeclarative
qtsvg
hunspell
];
nativeBuildInputs = [ pkg-config ];
}