qtwebengine init at 5.6.1-1

This commit is contained in:
Jos van den Oever 2016-06-26 22:49:23 +02:00
parent 7aa1caa4d3
commit 3d0e582b38
2 changed files with 7 additions and 1 deletions

View File

@ -96,7 +96,7 @@ let
qttranslations = callPackage ./qttranslations.nix {};
/* qtwayland = not packaged */
qtwebchannel = callPackage ./qtwebchannel.nix {};
/* qtwebengine = not packaged */
qtwebengine = callPackage ./qtwebengine.nix {};
qtwebsockets = callPackage ./qtwebsockets.nix {};
/* qtwinextras = not packaged */
qtx11extras = callPackage ./qtx11extras.nix {};

View File

@ -0,0 +1,6 @@
{ qtSubmodule, qtquickcontrols, qtlocation, qtwebchannel }:
qtSubmodule {
name = "qtwebengine";
qtInputs = [ qtquickcontrols qtlocation qtwebchannel ];
}