2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
10 lines
312 B
Nix
10 lines
312 B
Nix
{ lib, stdenv, qtModule, qtbase, qtdeclarative, GameController, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtgamepad";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ]
|
|
++ lib.optional stdenv.isDarwin GameController;
|
|
buildInputs = [ ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|