From 117ee3af2ac60518c7ecb80e08b0a058542f598b Mon Sep 17 00:00:00 2001 From: Rick van Schijndel Date: Sun, 29 May 2022 10:21:46 +0200 Subject: [PATCH] blender: mark broken on all darwins --- pkgs/applications/misc/blender/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index f6d8bf747ac5..4aceeeb9e355 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -159,6 +159,8 @@ stdenv.mkDerivation rec { ''; meta = with lib; { + # darwin.patch doesn't apply anymore, needs update + broken = stdenv.isDarwin; description = "3D Creation/Animation/Publishing System"; homepage = "https://www.blender.org"; # They comment two licenses: GPLv2 and Blender License, but they @@ -166,8 +168,6 @@ stdenv.mkDerivation rec { # OptiX, enabled with cudaSupport, is non-free. license = with licenses; [ gpl2Plus ] ++ optional cudaSupport unfree; platforms = [ "x86_64-linux" "x86_64-darwin" ]; - # darwin.patch doesn't apply anymore, might need update - broken = (stdenv.isDarwin && stdenv.isx86_64); maintainers = with maintainers; [ goibhniu veprbl ]; }; }