about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2024-03-06 23:55:18 -0500
committerAndrew Marshall <andrew@johnandrewmarshall.com>2024-03-12 12:40:44 -0400
commitcaa0d575c838e33732fb5ff70f12a06a29c46cc3 (patch)
tree3ce23539f51e4fdd8397a6268cc996e1b1388e16 /pkgs/applications
parent842ab74be08f5f368e174f9552d26e66a5277273 (diff)
downloadnixlib-caa0d575c838e33732fb5ff70f12a06a29c46cc3.tar
nixlib-caa0d575c838e33732fb5ff70f12a06a29c46cc3.tar.gz
nixlib-caa0d575c838e33732fb5ff70f12a06a29c46cc3.tar.bz2
nixlib-caa0d575c838e33732fb5ff70f12a06a29c46cc3.tar.lz
nixlib-caa0d575c838e33732fb5ff70f12a06a29c46cc3.tar.xz
nixlib-caa0d575c838e33732fb5ff70f12a06a29c46cc3.tar.zst
nixlib-caa0d575c838e33732fb5ff70f12a06a29c46cc3.zip
blender: fix incompat with OpenImageIO 2.5+ causing incorrect renders
See linked issue in comment.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/blender/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index ebbc6cc84fef..2a3a359b4304 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -112,6 +112,11 @@ stdenv.mkDerivation (finalAttrs: {
       url = "https://projects.blender.org/blender/blender/commit/cf4365e555a759d5b3225bce77858374cb07faad.diff";
       hash = "sha256-Nypd04yFSHYa7RBa8kNmoApqJrU4qpaOle3tkj44d4g=";
     })
+    (fetchpatch {
+      # https://projects.blender.org/blender/blender/issues/117145
+      url = "https://projects.blender.org/blender/blender/commit/eb99895c972b6c713294f68a34798aa51d36034a.patch";
+      hash = "sha256-95nG5mW408lhKJ2BppgaUwBMMeXeGyBqho6mCfB53GI=";
+    })
   ] ++ lib.optional stdenv.isDarwin ./darwin.patch;
 
   postPatch =