qt5.qtgamepad: init at 5.12.7
This commit is contained in:
parent
aa35d565ff
commit
5ecd99b2bd
@ -139,6 +139,7 @@ let
|
|||||||
qtconnectivity = callPackage ../modules/qtconnectivity.nix {};
|
qtconnectivity = callPackage ../modules/qtconnectivity.nix {};
|
||||||
qtdeclarative = callPackage ../modules/qtdeclarative.nix {};
|
qtdeclarative = callPackage ../modules/qtdeclarative.nix {};
|
||||||
qtdoc = callPackage ../modules/qtdoc.nix {};
|
qtdoc = callPackage ../modules/qtdoc.nix {};
|
||||||
|
qtgamepad = callPackage ../modules/qtgamepad.nix {};
|
||||||
qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {};
|
qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {};
|
||||||
qtimageformats = callPackage ../modules/qtimageformats.nix {};
|
qtimageformats = callPackage ../modules/qtimageformats.nix {};
|
||||||
qtlocation = callPackage ../modules/qtlocation.nix {};
|
qtlocation = callPackage ../modules/qtlocation.nix {};
|
||||||
@ -171,7 +172,7 @@ let
|
|||||||
|
|
||||||
env = callPackage ../qt-env.nix {};
|
env = callPackage ../qt-env.nix {};
|
||||||
full = env "qt-full-${qtbase.version}" ([
|
full = env "qt-full-${qtbase.version}" ([
|
||||||
qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
qtcharts qtconnectivity qtdeclarative qtdoc qtgamepad qtgraphicaleffects
|
||||||
qtimageformats qtlocation qtmultimedia qtquickcontrols qtquickcontrols2
|
qtimageformats qtlocation qtmultimedia qtquickcontrols qtquickcontrols2
|
||||||
qtscript qtsensors qtserialport qtsvg qttools qttranslations
|
qtscript qtsensors qtserialport qtsvg qttools qttranslations
|
||||||
qtvirtualkeyboard qtwebchannel qtwebengine qtwebkit qtwebsockets
|
qtvirtualkeyboard qtwebchannel qtwebengine qtwebkit qtwebsockets
|
||||||
|
9
pkgs/development/libraries/qt-5/modules/qtgamepad.nix
Normal file
9
pkgs/development/libraries/qt-5/modules/qtgamepad.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ qtModule, qtbase, qtdeclarative, pkgconfig }:
|
||||||
|
|
||||||
|
qtModule {
|
||||||
|
name = "qtgamepad";
|
||||||
|
qtInputs = [ qtbase qtdeclarative ];
|
||||||
|
buildInputs = [ ];
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
outputs = [ "out" "dev" "bin" ];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user