mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
grass: fix openmp support on darwin
This commit is contained in:
parent
160e8ad614
commit
23d10b2518
@ -23,6 +23,7 @@
|
||||
, libsvm
|
||||
, libtiff
|
||||
, libxml2
|
||||
, llvmPackages
|
||||
, netcdf
|
||||
, pdal
|
||||
, pkg-config
|
||||
@ -86,7 +87,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
zlib
|
||||
zstd
|
||||
] ++ lib.optionals withOpenGL [ libGLU ]
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv ];
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv ]
|
||||
++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user