summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2021-07-11 19:11:33 -0400
committerGitHub <noreply@github.com>2021-07-11 19:11:33 -0400
commit0913ebd2222ae8e413eb950f773cdeb4341b5fc0 (patch)
tree1cfad1f6ecf6aee8da9da14e2f0b1c7da1091a65 /pkgs/applications
parent7db19e75e6f53f1e6b53ee4b64822fdfc03f779a (diff)
parent520c2971d1da6936c706138bdbe6b339f888d1c7 (diff)
downloadnixpkgs-0913ebd2222ae8e413eb950f773cdeb4341b5fc0.tar
nixpkgs-0913ebd2222ae8e413eb950f773cdeb4341b5fc0.tar.gz
nixpkgs-0913ebd2222ae8e413eb950f773cdeb4341b5fc0.tar.bz2
nixpkgs-0913ebd2222ae8e413eb950f773cdeb4341b5fc0.tar.lz
nixpkgs-0913ebd2222ae8e413eb950f773cdeb4341b5fc0.tar.xz
nixpkgs-0913ebd2222ae8e413eb950f773cdeb4341b5fc0.tar.zst
nixpkgs-0913ebd2222ae8e413eb950f773cdeb4341b5fc0.zip
Merge pull request #129941 from veprbl/pr/blender_2_93_1
blender: 2.93.0 -> 2.93.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/blender/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index 305ab891713..26ca3898134 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -26,11 +26,11 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "blender";
-  version = "2.93.0";
+  version = "2.93.1";
 
   src = fetchurl {
     url = "https://download.blender.org/source/${pname}-${version}.tar.xz";
-    sha256 = "0f2rpqa39sir6g90khd2d2fs4kss0zhk7vya1nscf5yp8r566fxs";
+    sha256 = "sha256-IdriOBw/DlpH6B0GKqC1nKnhTZwrIL8U9hkMS20BHNg=";
   };
 
   patches = lib.optional stdenv.isDarwin ./darwin.patch;