summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2017-12-28 05:38:09 +0800
committeradisbladis <adis@blad.is>2017-12-28 21:13:45 +0800
commit907face4642ed705c69c114dc6961b9eef2e9fa6 (patch)
tree8ec801566aaee84c19adbca7cfb8ba3c9afa6800 /pkgs/development/libraries/qt-5
parent47a71e942656ca3b24858022a8b7e9507b46fbf7 (diff)
downloadnixlib-907face4642ed705c69c114dc6961b9eef2e9fa6.tar
nixlib-907face4642ed705c69c114dc6961b9eef2e9fa6.tar.gz
nixlib-907face4642ed705c69c114dc6961b9eef2e9fa6.tar.bz2
nixlib-907face4642ed705c69c114dc6961b9eef2e9fa6.tar.lz
nixlib-907face4642ed705c69c114dc6961b9eef2e9fa6.tar.xz
nixlib-907face4642ed705c69c114dc6961b9eef2e9fa6.tar.zst
nixlib-907face4642ed705c69c114dc6961b9eef2e9fa6.zip
qt5: Add qtvirtualkeyboard submodule
Diffstat (limited to 'pkgs/development/libraries/qt-5')
-rw-r--r--pkgs/development/libraries/qt-5/5.9/default.nix3
-rw-r--r--pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix6
2 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-5/5.9/default.nix b/pkgs/development/libraries/qt-5/5.9/default.nix
index 0582a9f3f825..7bf61c98086a 100644
--- a/pkgs/development/libraries/qt-5/5.9/default.nix
+++ b/pkgs/development/libraries/qt-5/5.9/default.nix
@@ -91,6 +91,7 @@ let
       qtsvg = callPackage ../modules/qtsvg.nix {};
       qttools = callPackage ../modules/qttools.nix {};
       qttranslations = callPackage ../modules/qttranslations.nix {};
+      qtvirtualkeyboard = callPackage ../modules/qtvirtualkeyboard.nix {};
       qtwayland = callPackage ../modules/qtwayland.nix {};
       qtwebchannel = callPackage ../modules/qtwebchannel.nix {};
       qtwebengine = callPackage ../modules/qtwebengine.nix {};
@@ -104,7 +105,7 @@ let
         qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
         qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
         qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
-        qtx11extras qtxmlpatterns
+        qtx11extras qtxmlpatterns qtvirtualkeyboard
       ] ++ optional (!stdenv.isDarwin) qtwayland
         ++ optional (stdenv.isDarwin) qtmacextras);
 
diff --git a/pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix b/pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix
new file mode 100644
index 000000000000..2ba720c8eedc
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix
@@ -0,0 +1,6 @@
+{ qtModule, qtbase, qtdeclarative, qtsvg, hunspell  }:
+
+qtModule {
+  name = "qtvirtualkeyboard";
+  qtInputs = [ qtbase qtdeclarative qtsvg hunspell ];
+}