mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
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" ];
|
|
}
|