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

qtModule {
  pname = "qtquick3dphysics";
  propagatedBuildInputs = [ qtbase qtquick3d ];
  env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64)
    "-faligned-allocation";
  meta.mainProgram = "cooker";
}