mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
qt5: Add qtvirtualkeyboard submodule
This commit is contained in:
parent
47a71e9426
commit
907face464
@ -91,6 +91,7 @@ let
|
|||||||
qtsvg = callPackage ../modules/qtsvg.nix {};
|
qtsvg = callPackage ../modules/qtsvg.nix {};
|
||||||
qttools = callPackage ../modules/qttools.nix {};
|
qttools = callPackage ../modules/qttools.nix {};
|
||||||
qttranslations = callPackage ../modules/qttranslations.nix {};
|
qttranslations = callPackage ../modules/qttranslations.nix {};
|
||||||
|
qtvirtualkeyboard = callPackage ../modules/qtvirtualkeyboard.nix {};
|
||||||
qtwayland = callPackage ../modules/qtwayland.nix {};
|
qtwayland = callPackage ../modules/qtwayland.nix {};
|
||||||
qtwebchannel = callPackage ../modules/qtwebchannel.nix {};
|
qtwebchannel = callPackage ../modules/qtwebchannel.nix {};
|
||||||
qtwebengine = callPackage ../modules/qtwebengine.nix {};
|
qtwebengine = callPackage ../modules/qtwebengine.nix {};
|
||||||
@ -104,7 +105,7 @@ let
|
|||||||
qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
||||||
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
|
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
|
||||||
qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
|
qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
|
||||||
qtx11extras qtxmlpatterns
|
qtx11extras qtxmlpatterns qtvirtualkeyboard
|
||||||
] ++ optional (!stdenv.isDarwin) qtwayland
|
] ++ optional (!stdenv.isDarwin) qtwayland
|
||||||
++ optional (stdenv.isDarwin) qtmacextras);
|
++ optional (stdenv.isDarwin) qtmacextras);
|
||||||
|
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
{ qtModule, qtbase, qtdeclarative, qtsvg, hunspell }:
|
||||||
|
|
||||||
|
qtModule {
|
||||||
|
name = "qtvirtualkeyboard";
|
||||||
|
qtInputs = [ qtbase qtdeclarative qtsvg hunspell ];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user