forked from mirrors/nixpkgs
10 lines
216 B
Nix
10 lines
216 B
Nix
|
{ qtModule, qtbase, qtdeclarative, pkgconfig }:
|
||
|
|
||
|
qtModule {
|
||
|
name = "qtgamepad";
|
||
|
qtInputs = [ qtbase qtdeclarative ];
|
||
|
buildInputs = [ ];
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
outputs = [ "out" "dev" "bin" ];
|
||
|
}
|