summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtquick3dphysics.nix
blob: 94e6cb9920c565c3812f1ee7230c8e852bcc9e96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ qtModule
, lib
, stdenv
, qtbase
, qtquick3d
}:

qtModule {
  pname = "qtquick3dphysics";
  qtInputs = [ qtbase qtquick3d ];
  NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64)
    "-faligned-allocation";
}