about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-13 17:12:28 -0700
committerGitHub <noreply@github.com>2020-03-13 20:12:28 -0400
commit4d8cac34f79ed890b586a91a0c049cf0cfa307a6 (patch)
tree78d71f5de5b4752ffaac73e8c1ffecd362ef0997 /pkgs/applications/misc
parente6e040d573b81b69397e3a28bad89b8fe7125217 (diff)
downloadnixlib-4d8cac34f79ed890b586a91a0c049cf0cfa307a6.tar
nixlib-4d8cac34f79ed890b586a91a0c049cf0cfa307a6.tar.gz
nixlib-4d8cac34f79ed890b586a91a0c049cf0cfa307a6.tar.bz2
nixlib-4d8cac34f79ed890b586a91a0c049cf0cfa307a6.tar.lz
nixlib-4d8cac34f79ed890b586a91a0c049cf0cfa307a6.tar.xz
nixlib-4d8cac34f79ed890b586a91a0c049cf0cfa307a6.tar.zst
nixlib-4d8cac34f79ed890b586a91a0c049cf0cfa307a6.zip
blender: 2.82 -> 2.82a (#82450)
Diffstat (limited to 'pkgs/applications/misc')
-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 f55e46a6dc7a..338a5249aebb 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;