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

16 lines
262 B
Nix
Raw Normal View History

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