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

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