Merge pull request #101044 from r-burns/lcms2

lcms2: fix build on darwin
This commit is contained in:
Robert Scott 2020-10-19 19:16:30 +01:00 committed by GitHub
commit e5973b4438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,9 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ libtiff libjpeg zlib ];
# See https://trac.macports.org/ticket/60656
LDFLAGS = if stdenv.hostPlatform.isDarwin then "-Wl,-w" else null;
meta = with stdenv.lib; {
description = "Color management engine";
homepage = "http://www.littlecms.com/";