Revert "openexr_3: 3.2.4 -> 3.3.0" (#349220)

This commit is contained in:
Emily 2024-10-17 07:59:10 +01:00 committed by GitHub
commit e5f3f61136
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,18 +5,19 @@
, imath , imath
, libdeflate , libdeflate
, pkg-config , pkg-config
, libjxl
, pkgsCross , pkgsCross
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "openexr"; pname = "openexr";
version = "3.3.0"; version = "3.2.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "AcademySoftwareFoundation"; owner = "AcademySoftwareFoundation";
repo = "openexr"; repo = "openexr";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-/B0IMbPnixLR10KrE2n9n2Ny/pLIsG6DpBJn8Ax79oE="; hash = "sha256-mVUxxYe6teiJ18PQ9703/kjBpJ9+a7vcDme+NwtQQQM=";
}; };
outputs = [ "bin" "dev" "out" "doc" ]; outputs = [ "bin" "dev" "out" "doc" ];
@ -47,6 +48,7 @@ stdenv.mkDerivation rec {
doCheck = !stdenv.hostPlatform.isAarch32; doCheck = !stdenv.hostPlatform.isAarch32;
passthru.tests = { passthru.tests = {
inherit libjxl;
musl = pkgsCross.musl64.openexr_3; musl = pkgsCross.musl64.openexr_3;
}; };