diff options
author | Marius Bakke <[email protected]> | 2022-02-13 14:24:53 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2022-02-13 14:24:53 +0100 |
commit | 76b6bbdf232b4b82cdd23cfe0d81331a4fd2edec (patch) | |
tree | 0e6a57ba08b9c6f9f5cbcdc5b5d9daeea91e428d /gnu/packages/graphics.scm | |
parent | 1a5302435ff0d2822b823f5a6fe01faa7a85c629 (diff) | |
parent | e8af2ea63a7f497b8f8e19e206645109c0646e72 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/graphics.scm')
-rw-r--r-- | gnu/packages/graphics.scm | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index b69ab52aec..d56e0d3d99 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -27,6 +27,7 @@ ;;; Copyright © 2021 Andy Tai <[email protected]> ;;; Copyright © 2021 Ekaitz Zarraga <[email protected]> ;;; Copyright © 2021 Vinicius Monego <[email protected]> +;;; Copyright © 2022 Michael Rohleder <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -410,14 +411,14 @@ typically encountered in feature film production.") (define-public blender (package (name "blender") - (version "3.0.0") + (version "3.0.1") (source (origin (method url-fetch) (uri (string-append "https://download.blender.org/source/" "blender-" version ".tar.xz")) (sha256 (base32 - "1jzirg60c2lhln78a7phbsk2ssvcdqxqb3awp895m0pqrlmz7w2h")))) + "0hblgls5pclqamsxk0vb14f4fm30hdiq7fb2bm5mq2ly4sb0mfqr")))) (build-system cmake-build-system) (arguments (let ((python-version (version-major+minor (package-version python)))) @@ -618,9 +619,9 @@ more.") "|")))))))) (native-inputs (list bison - clang + clang-9 flex - llvm + llvm-9 pybind11 python-wrapper)) (inputs @@ -1961,15 +1962,16 @@ and build scripts for the OpenXR loader.") "0n04k7a8b0i8ga0kbzh7qxmvni1ijawgk98s83519vxg4d0yyjbq")))) (build-system meson-build-system) (inputs - `(("ffmpeg" ,ffmpeg) - ("glslang" ,glslang) - ("libudev" ,eudev) - ("libusb" ,libusb) - ("libxcb" ,libxcb) - ("libxrandr" ,libxrandr) - ("opengl" ,mesa) - ("v4l" ,v4l-utils) - ("vulkan-loader" ,vulkan-loader))) + (list ffmpeg + glslang + eudev + libusb + libxcb + libxrandr + mesa + python + v4l-utils + vulkan-loader)) (native-inputs (list eigen pkg-config vulkan-headers)) (arguments |