openimageio: 2.5.16.0 -> 2.5.17.0, fix incorrect license

- v2.5.17.0 was released on Nov 1, 2024, includes bug fixes
- openimageio relicense their code under Apache 2.0
  https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/3905
- remove unnecessary patch
- remove `rec` and `with lib;`
This commit is contained in:
Zexin Yuan
2025-04-23 20:48:10 +08:00
parent 6ca05eda86
commit bfb90a95c3
+9 -15
View File
@@ -15,23 +15,17 @@
fmt,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "openimageio";
version = "2.5.16.0";
version = "2.5.17.0";
src = fetchFromGitHub {
owner = "AcademySoftwareFoundation";
repo = "OpenImageIO";
rev = "v${version}";
hash = "sha256-hUCwlzQW5mJH5HYPbLWOcupc36nxM12CV0sakZhiGzo=";
tag = "v${finalAttrs.version}";
hash = "sha256-d5LqRcqWj6E9jJYY/Pa5e7/MeuQGMjUo/hMCYRKsKeU=";
};
# Workaround broken zlib version detection in CMake < 3.37.
postPatch = ''
substituteInPlace ./src/cmake/Config.cmake.in \
--replace " @ZLIB_VERSION@" ""
'';
outputs = [
"bin"
"out"
@@ -73,11 +67,11 @@ stdenv.mkDerivation rec {
--replace "\''${_IMPORT_PREFIX}/lib/lib" "$out/lib/lib"
'';
meta = with lib; {
meta = {
homepage = "https://openimageio.org";
description = "Library and tools for reading and writing images";
license = licenses.bsd3;
maintainers = [ ];
platforms = platforms.unix;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ yzx9 ];
platforms = lib.platforms.unix;
};
}
})