66604c92c1
GitOrigin-RevId: 32b8ed738096bafb4cdb7f70347a0f63f9f40151
9 lines
216 B
Nix
9 lines
216 B
Nix
{ qtModule, qtbase, qtdeclarative, pkgconfig }:
|
|
|
|
qtModule {
|
|
name = "qtgamepad";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|