gnu: Blender: Update to 2.81.

* gnu/packages/graphics.scm (blender): Update to 2.81.
[inputs]: Add libxi, libxrender, and tbb.
This commit is contained in:
Leo Famulari 2019-11-27 21:46:14 -05:00
parent 9943d238e9
commit 7297ebb287
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -71,6 +71,7 @@ (define-module (gnu packages graphics)
#:use-module (gnu packages readline) #:use-module (gnu packages readline)
#:use-module (gnu packages sdl) #:use-module (gnu packages sdl)
#:use-module (gnu packages swig) #:use-module (gnu packages swig)
#:use-module (gnu packages tbb)
#:use-module (gnu packages video) #:use-module (gnu packages video)
#:use-module (gnu packages xml) #:use-module (gnu packages xml)
#:use-module (gnu packages xorg) #:use-module (gnu packages xorg)
@ -87,14 +88,14 @@ (define-module (gnu packages graphics)
(define-public blender (define-public blender
(package (package
(name "blender") (name "blender")
(version "2.80") (version "2.81")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://download.blender.org/source/" (uri (string-append "https://download.blender.org/source/"
"blender-" version ".tar.gz")) "blender-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1h550jisdbis50hxwk5kxrvrk1a6sh2fsri3yyj66vhzbi87x7fd")))) "1prp0f2152f1sz23jlc86vndfvmplb7qhllikkirq7hgpykrshna"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
(let ((python-version (version-major+minor (package-version python)))) (let ((python-version (version-major+minor (package-version python))))
@ -145,6 +146,8 @@ (define-public blender
`(("boost" ,boost) `(("boost" ,boost)
("jemalloc" ,jemalloc) ("jemalloc" ,jemalloc)
("libx11" ,libx11) ("libx11" ,libx11)
("libxi" ,libxi)
("libxrender" ,libxrender)
("openimageio" ,openimageio) ("openimageio" ,openimageio)
("openexr" ,openexr) ("openexr" ,openexr)
("opensubdiv" ,opensubdiv) ("opensubdiv" ,opensubdiv)
@ -162,6 +165,7 @@ (define-public blender
("openal" ,openal) ("openal" ,openal)
("python" ,python) ("python" ,python)
("python-numpy" ,python-numpy) ("python-numpy" ,python-numpy)
("tbb" ,tbb)
("zlib" ,zlib))) ("zlib" ,zlib)))
(home-page "https://blender.org/") (home-page "https://blender.org/")
(synopsis "3D graphics creation suite") (synopsis "3D graphics creation suite")