summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules/qt3d.nix
blob: f394ff6627e0c86925d418e7e44af2e49f4bfdb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ 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.isDarwin && stdenv.isAarch64) "-Dstat64=stat";
}