mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #16530 from vandenoever/qt56
add qtwebchannel and qtwebengine
This commit is contained in:
commit
c78f9ad2f9
@ -95,8 +95,8 @@ let
|
||||
qttools = callPackage ./qttools.nix {};
|
||||
qttranslations = callPackage ./qttranslations.nix {};
|
||||
/* qtwayland = not packaged */
|
||||
/* qtwebchannel = not packaged */
|
||||
/* qtwebengine = not packaged */
|
||||
qtwebchannel = callPackage ./qtwebchannel.nix {};
|
||||
qtwebengine = callPackage ./qtwebengine.nix {};
|
||||
qtwebsockets = callPackage ./qtwebsockets.nix {};
|
||||
/* qtwinextras = not packaged */
|
||||
qtx11extras = callPackage ./qtx11extras.nix {};
|
||||
|
7
pkgs/development/libraries/qt-5/5.6/qtwebchannel.nix
Normal file
7
pkgs/development/libraries/qt-5/5.6/qtwebchannel.nix
Normal file
@ -0,0 +1,7 @@
|
||||
{ qtSubmodule, qtbase, qtdeclarative }:
|
||||
|
||||
qtSubmodule {
|
||||
name = "qtwebchannel";
|
||||
qtInputs = [ qtbase qtdeclarative ];
|
||||
}
|
||||
|
6
pkgs/development/libraries/qt-5/5.6/qtwebengine.nix
Normal file
6
pkgs/development/libraries/qt-5/5.6/qtwebengine.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ qtSubmodule, qtquickcontrols, qtlocation, qtwebchannel }:
|
||||
|
||||
qtSubmodule {
|
||||
name = "qtwebengine";
|
||||
qtInputs = [ qtquickcontrols qtlocation qtwebchannel ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user