summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorLancelot SIX <lsix+github@lancelotsix.com>2020-08-14 22:03:33 +0100
committerGitHub <noreply@github.com>2020-08-14 22:03:33 +0100
commit892085c07c81ef8dc546f61fe0cbd8261a6b3132 (patch)
tree46c36aee1a7e3a412ee004b956754da95f80f8ac /pkgs/applications
parente092abb55ca99226b01fe508fce80c234a9c7a14 (diff)
parent87911328d4f0f780063568f44cd256583ef34692 (diff)
downloadnixpkgs-892085c07c81ef8dc546f61fe0cbd8261a6b3132.tar
nixpkgs-892085c07c81ef8dc546f61fe0cbd8261a6b3132.tar.gz
nixpkgs-892085c07c81ef8dc546f61fe0cbd8261a6b3132.tar.bz2
nixpkgs-892085c07c81ef8dc546f61fe0cbd8261a6b3132.tar.lz
nixpkgs-892085c07c81ef8dc546f61fe0cbd8261a6b3132.tar.xz
nixpkgs-892085c07c81ef8dc546f61fe0cbd8261a6b3132.tar.zst
nixpkgs-892085c07c81ef8dc546f61fe0cbd8261a6b3132.zip
Merge pull request #95298 from r-ryantm/auto-update/blender
blender: 2.83.3 -> 2.83.4
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 45df3547545..2e6981490ce 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -17,11 +17,11 @@ let python = python3Packages.python; in
 
 stdenv.mkDerivation rec {
   pname = "blender";
-  version = "2.83.3";
+  version = "2.83.4";
 
   src = fetchurl {
     url = "https://download.blender.org/source/${pname}-${version}.tar.xz";
-    sha256 = "18m27abp4j3xv48dr6ddr2mqcvx2vkjffr487z90059yv9k0yh2p";
+    sha256 = "1y4phkzrxy17kpjbg0jbz1236nw8w8p006x1crbqmvwz8wd3dm46";
   };
 
   patches = lib.optional stdenv.isDarwin ./darwin.patch;