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

qtModule {
  name = "qtgamepad";
  qtInputs = [ qtbase qtdeclarative ];
  buildInputs = [ ];
  nativeBuildInputs = [ pkg-config ];
  outputs = [ "out" "dev" "bin" ];
}