nixpkgs/pkgs/development/libraries/qt-6/modules/qtvirtualkeyboard.nix
2022-05-23 09:37:40 +08:00

15 lines
262 B
Nix

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