nixpkgs-odroid-hc4/pkgs/development/libraries/qt-6/modules/qtvirtualkeyboard.nix
2025-12-20 09:59:59 +11: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" ];
}