qt5: Add qtvirtualkeyboard submodule

+8 -1
+2 -1
pkgs/development/libraries/qt-5/5.9/default.nix
··· 91 91 qtsvg = callPackage ../modules/qtsvg.nix {}; 92 92 qttools = callPackage ../modules/qttools.nix {}; 93 93 qttranslations = callPackage ../modules/qttranslations.nix {}; 94 + qtvirtualkeyboard = callPackage ../modules/qtvirtualkeyboard.nix {}; 94 95 qtwayland = callPackage ../modules/qtwayland.nix {}; 95 96 qtwebchannel = callPackage ../modules/qtwebchannel.nix {}; 96 97 qtwebengine = callPackage ../modules/qtwebengine.nix {}; ··· 104 105 qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects 105 106 qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript 106 107 qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets 107 - qtx11extras qtxmlpatterns 108 + qtx11extras qtxmlpatterns qtvirtualkeyboard 108 109 ] ++ optional (!stdenv.isDarwin) qtwayland 109 110 ++ optional (stdenv.isDarwin) qtmacextras); 110 111
+6
pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix
··· 1 + { qtModule, qtbase, qtdeclarative, qtsvg, hunspell }: 2 + 3 + qtModule { 4 + name = "qtvirtualkeyboard"; 5 + qtInputs = [ qtbase qtdeclarative qtsvg hunspell ]; 6 + }