mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 22:23:15 +00:00
14 lines
236 B
Nix
14 lines
236 B
Nix
{ qtModule
|
|
, lib
|
|
, stdenv
|
|
, qtbase
|
|
, qtquick3d
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtquick3dphysics";
|
|
qtInputs = [ qtbase qtquick3d ];
|
|
NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64)
|
|
"-faligned-allocation";
|
|
}
|