depot/third_party/nixpkgs/pkgs/development/libraries/qt-5/modules/qtgamepad.nix

20 lines
244 B
Nix

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