Merge pull request #241876 from wegank/osl-darwin

osl: add darwin support
This commit is contained in:
Weijia Wang 2023-07-12 17:00:25 +03:00 committed by GitHub
commit 9a2d7605d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@
, cmake
, clang
, libclang
, libxml2
, zlib
, openexr
, openimageio
@ -67,6 +68,8 @@ in stdenv.mkDerivation rec {
python3.pkgs.pybind11
util-linux # needed just for hexdump
zlib
] ++ lib.optionals stdenv.isDarwin [
libxml2
];
postFixup = ''
@ -79,6 +82,6 @@ in stdenv.mkDerivation rec {
homepage = "https://opensource.imageworks.com/osl.html";
maintainers = with maintainers; [ hodapp ];
license = licenses.bsd3;
platforms = platforms.linux;
platforms = platforms.unix;
};
}