openexr_3: 3.1.10 -> 3.2.0

authored by Sandro Jäckel and committed by Yureka 8c297a38 771d8704

+6 -6
+6 -6
pkgs/development/libraries/openexr/3.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 - , zlib 6 4 , cmake 7 5 , imath 6 + , libdeflate 7 + , pkg-config 8 8 }: 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "openexr"; 12 - version = "3.1.10"; 12 + version = "3.2.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "AcademySoftwareFoundation"; 16 16 repo = "openexr"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-8oV7Himk9AS2e2Z3OREE7KQgFIUysXwATlUN51dDe5M="; 18 + hash = "sha256-cV+qgx3WzdotypgpZhVFxzdKAU2rNVw0KWSdkeN0gLk="; 19 19 }; 20 20 21 21 outputs = [ "bin" "dev" "out" "doc" ]; ··· 29 29 30 30 cmakeFlags = lib.optional stdenv.hostPlatform.isStatic "-DCMAKE_SKIP_RPATH=ON"; 31 31 32 - nativeBuildInputs = [ cmake ]; 33 - propagatedBuildInputs = [ imath zlib ]; 32 + nativeBuildInputs = [ cmake pkg-config ]; 33 + propagatedBuildInputs = [ imath libdeflate ]; 34 34 35 35 # Without 'sse' enforcement tests fail on i686 as due to excessive precision as: 36 36 # error reading back channel B pixel 21,-76 got -nan expected -nan