summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtvirtualkeyboard.nix
blob: bb868dc61829569e8e928c601293a063217d677a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ qtModule
, qtbase
, qtdeclarative
, qtsvg
, hunspell
, pkg-config
}:

qtModule {
  pname = "qtvirtualkeyboard";
  qtInputs = [ qtbase qtdeclarative qtsvg ];
  propagatedBuildInputs = [ hunspell ];
  nativeBuildInputs = [ pkg-config ];
  outputs = [ "out" ];
}