24 lines
388 B
Nix
24 lines
388 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
qtModule,
|
|
qtbase,
|
|
qtdeclarative,
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qt3d";
|
|
propagatedBuildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
];
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"bin"
|
|
];
|
|
# error: use of undeclared identifier 'stat64'
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (
|
|
stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64
|
|
) "-Dstat64=stat";
|
|
}
|