1{
2 lib,
3 stdenv,
4 qtModule,
5 qtbase,
6 qtdeclarative,
7}:
8
9qtModule {
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";
24}