nixpkgs/pkgs/development/libraries/qt-5/modules/qtgamepad.nix
2021-05-14 05:53:30 -05:00

10 lines
219 B
Nix

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