11 lines
299 B
Nix
11 lines
299 B
Nix
{ lib, stdenv, qtModule, qtbase, qtdeclarative, GameController, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtgamepad";
|
|
qtInputs = [ qtbase qtdeclarative ]
|
|
++ lib.optional stdenv.isDarwin GameController;
|
|
buildInputs = [ ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|