summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-13 17:12:28 -0700
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-03-19 00:29:26 -0400
commita02a11f7393293cc43f11289bd8b7f5809a747f9 (patch)
tree6b45324bf8745e968883b814681c3455ca59757f /pkgs
parent294fd3c0f517b44cd79dbacec7df5118b46da303 (diff)
blender: 2.82 -> 2.82a (#82450)
(cherry picked from commit 4d8cac34f79ed890b586a91a0c049cf0cfa307a6)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/blender/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index f55e46a6dc7ae..338a5249aebb4 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.82";
+  version = "2.82a";
 
   src = fetchurl {
     url = "https://download.blender.org/source/${pname}-${version}.tar.xz";
-    sha256 = "0rgw8nilvn6k6r7p28y2l1rwpami1cc8xz473jaahn7wa4ndyah0";
+    sha256 = "18zbdgas6qf2kmvvlimxgnq7y9kj7hdxcgixrs6fj50x40q01q2d";
   };
 
   patches = lib.optional stdenv.isDarwin ./darwin.patch;
@@ -137,7 +137,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "3D Creation/Animation/Publishing System";
-    homepage = https://www.blender.org;
+    homepage = "https://www.blender.org";
     # They comment two licenses: GPLv2 and Blender License, but they
     # say: "We've decided to cancel the BL offering for an indefinite period."
     license = licenses.gpl2Plus;