diff options
author | Vinicius Monego <monego@posteo.net> | 2024-05-12 00:29:29 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2024-07-06 00:45:42 -0300 |
commit | 5bcca03e146042dbf317aab97a707c477258f536 (patch) | |
tree | 566855bb443828293bf634fca723c3c656eb5db6 | |
parent | 5b6e65a5b5e9662b52a58de7cae282a24bee6b08 (diff) | |
download | guix-5bcca03e146042dbf317aab97a707c477258f536.tar.gz guix-5bcca03e146042dbf317aab97a707c477258f536.zip |
gnu: openimageio: Update to 2.5.13.0.
* gnu/packages/graphics.scm (openimageio): Update to 2.5.13.0.
[source, home-page]: Follow redirect.
Change-Id: Iacbd7d5b3388e4b709d995ae96859174ee3165a4
-rw-r--r-- | gnu/packages/graphics.scm | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 2a1d66dbbd..275dc8ef23 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -1325,16 +1325,17 @@ with strong support for multi-part, multi-channel use cases.") (define-public openimageio (package (name "openimageio") - (version "2.5.10.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/OpenImageIO/oiio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "06x3lqj9qjh5m0zbr5g2g9ii6jk340pgzrhr4fb353y1y2pkx5sw")))) + (version "2.5.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/AcademySoftwareFoundation/OpenImageIO") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0bqalfcfjjk31a7zv2hyx0jz8jpdhpsmc3sqwmfl4zf431g45hpb")))) (build-system cmake-build-system) (arguments (list #:tests? #f ; half the tests require online data or use redirection @@ -1363,7 +1364,7 @@ with strong support for multi-part, multi-channel use cases.") related classes, utilities, and applications. There is a particular emphasis on formats and functionality used in professional, large-scale animation and visual effects work for film.") - (home-page "https://www.openimageio.org") + (home-page "https://github.com/AcademySoftwareFoundation/OpenImageIO") (license license:bsd-3))) (define-public openscenegraph |