mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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 {};
|
||||
qtdeclarative = callPackage ../modules/qtdeclarative.nix {};
|
||||
qtdoc = callPackage ../modules/qtdoc.nix {};
|
||||
qtgamepad = callPackage ../modules/qtgamepad.nix {};
|
||||
qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {};
|
||||
qtimageformats = callPackage ../modules/qtimageformats.nix {};
|
||||
qtlocation = callPackage ../modules/qtlocation.nix {};
|
||||
@ -171,7 +172,7 @@ let
|
||||
|
||||
env = callPackage ../qt-env.nix {};
|
||||
full = env "qt-full-${qtbase.version}" ([
|
||||
qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
||||
qtcharts qtconnectivity qtdeclarative qtdoc qtgamepad qtgraphicaleffects
|
||||
qtimageformats qtlocation qtmultimedia qtquickcontrols qtquickcontrols2
|
||||
qtscript qtsensors qtserialport qtsvg qttools qttranslations
|
||||
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