mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Merge pull request #50207 from Thra11/qtwebglplugin
qtwebglplugin: init at 5.11
This commit is contained in:
commit
b529b81be3
|
@ -113,6 +113,7 @@ let
|
|||
qtwayland = callPackage ../modules/qtwayland.nix {};
|
||||
qtwebchannel = callPackage ../modules/qtwebchannel.nix {};
|
||||
qtwebengine = callPackage ../modules/qtwebengine.nix {};
|
||||
qtwebglplugin = callPackage ../modules/qtwebglplugin.nix {};
|
||||
qtwebkit = callPackage ../modules/qtwebkit.nix {};
|
||||
qtwebsockets = callPackage ../modules/qtwebsockets.nix {};
|
||||
qtx11extras = callPackage ../modules/qtx11extras.nix {};
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{ qtModule, qtbase, qtwebsockets }:
|
||||
|
||||
qtModule {
|
||||
name = "qtwebglplugin";
|
||||
qtInputs = [ qtbase qtwebsockets ];
|
||||
}
|
Loading…
Reference in a new issue