python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / opencolorio / 1.x.nix
blob7622ebbe43ebe29431b23daa52c7150d8684baef
1 { stdenv, lib, fetchFromGitHub, cmake, boost, pkg-config, lcms2, tinyxml, git }:
3 stdenv.mkDerivation rec {
4   pname = "opencolorio";
5   version = "1.1.1";
7   src = fetchFromGitHub {
8     owner = "imageworks";
9     repo = "OpenColorIO";
10     rev = "v${version}";
11     sha256 = "12srvxca51czpfjl0gabpidj9n84mw78ivxy5w75qhq2mmc798sb";
12   };
14   outputs = [ "bin" "out" "dev" ];
16   # TODO: Investigate whether git can be dropped: It's only used to apply patches
17   nativeBuildInputs = [ cmake pkg-config git ];
19   buildInputs = [ lcms2 tinyxml ] ++ lib.optional stdenv.isDarwin boost;
21   postPatch = ''
22     substituteInPlace src/core/CMakeLists.txt --replace "-Werror" ""
23     substituteInPlace src/pyglue/CMakeLists.txt --replace "-Werror" ""
24   '';
26   cmakeFlags = [
27     "-DUSE_EXTERNAL_LCMS=ON"
28     "-DUSE_EXTERNAL_TINYXML=ON"
29     # External libyamlcpp 0.6.* not compatible: https://github.com/imageworks/OpenColorIO/issues/517
30     "-DUSE_EXTERNAL_YAML=OFF"
31   ] ++ lib.optional stdenv.isDarwin "-DOCIO_USE_BOOST_PTR=ON"
32     ++ lib.optional (!stdenv.hostPlatform.isx86) "-DOCIO_USE_SSE=OFF"
33     ++ lib.optional (stdenv.isDarwin && stdenv.isAarch64) "-DCMAKE_OSX_ARCHITECTURES=arm64";
35   postInstall = ''
36     mkdir -p $bin/bin; mv $out/bin $bin/
37   '';
39   meta = with lib; {
40     homepage = "https://opencolorio.org";
41     description = "A color management framework for visual effects and animation";
42     license = licenses.bsd3;
43     maintainers = [ maintainers.goibhniu ];
44     platforms = platforms.unix;
45   };