qtwebchannel init at 5.6.1-1

This commit is contained in:
Jos van den Oever 2016-06-26 22:48:03 +02:00
parent aaf28a1a7f
commit 7aa1caa4d3
2 changed files with 8 additions and 1 deletions

View File

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

View File

@ -0,0 +1,7 @@
{ qtSubmodule, qtbase, qtdeclarative }:
qtSubmodule {
name = "qtwebchannel";
qtInputs = [ qtbase qtdeclarative ];
}