forked from mirrors/nixpkgs
10 lines
219 B
Nix
10 lines
219 B
Nix
{ qtModule, qtbase, qtdeclarative, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtgamepad";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|