summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules/qtgamepad.nix
blob: 3985726731710a990d0f640e7da12c1bbbee5af3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, stdenv, qtModule, qtbase, qtdeclarative, GameController, pkg-config }:

qtModule {
  pname = "qtgamepad";
  propagatedBuildInputs = [ qtbase qtdeclarative ]
    ++ lib.optional stdenv.isDarwin GameController;
  buildInputs = [ ];
  nativeBuildInputs = [ pkg-config ];
  outputs = [ "out" "dev" "bin" ];
}