Merge pull request #337167 from amarshall/blender-update

blender: 4.2.0 -> 4.2.1; add myself as maintainer
This commit is contained in:
Pol Dellaiera 2024-08-25 11:34:27 +02:00 committed by GitHub
commit 669aea266e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,13 +100,13 @@ in
stdenv.mkDerivation (finalAttrs: {
pname = "blender";
version = "4.2.0";
version = "4.2.1";
srcs = [
(fetchzip {
name = "source";
url = "https://download.blender.org/source/blender-${finalAttrs.version}.tar.xz";
hash = "sha256-STG4IuEhkdA+sDPIpCAkSflyd3rSUZ9ZCS9PdB4vyTY=";
hash = "sha256-+Y4JbzeK+30fO8WdEmvjOeQjm094ofsUhRFXs9mkcxI=";
})
(fetchgit {
name = "assets";
@ -427,7 +427,10 @@ stdenv.mkDerivation (finalAttrs: {
];
# the current apple sdk is too old (currently 11_0) and fails to build "metal" on x86_64-darwin
broken = stdenv.hostPlatform.system == "x86_64-darwin";
maintainers = with lib.maintainers; [ veprbl ];
maintainers = with lib.maintainers; [
amarshall
veprbl
];
mainProgram = "blender";
};
})