mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
14 lines
240 B
Nix
14 lines
240 B
Nix
{ qtModule
|
|
, lib
|
|
, stdenv
|
|
, qtbase
|
|
, qtquick3d
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtquick3dphysics";
|
|
qtInputs = [ qtbase qtquick3d ];
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64)
|
|
"-faligned-allocation";
|
|
}
|