ks: add completions for bash and zsh (#364049)
[NixPkgs.git] / pkgs / development / libraries / qt-5 / modules / qt3d.nix
blobf8fd88c1fc809721475fe7bf642b747a757798cc
2   lib,
3   stdenv,
4   qtModule,
5   qtbase,
6   qtdeclarative,
7 }:
9 qtModule {
10   pname = "qt3d";
11   propagatedBuildInputs = [
12     qtbase
13     qtdeclarative
14   ];
15   outputs = [
16     "out"
17     "dev"
18     "bin"
19   ];
20   # error: use of undeclared identifier 'stat64'
21   env.NIX_CFLAGS_COMPILE = lib.optionalString (
22     stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64
23   ) "-Dstat64=stat";