about summary refs log tree commit diff
path: root/pkgs/applications/misc/blender
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2022-05-29 10:21:46 +0200
committerJanne Heß <janne@hess.ooo>2022-05-30 13:42:58 +0200
commit117ee3af2ac60518c7ecb80e08b0a058542f598b (patch)
tree6dadacb1a472b7fd0e71b641beb86092e8ba435c /pkgs/applications/misc/blender
parentda846421fc1ee9257871f65998358e23b923113d (diff)
blender: mark broken on all darwins
Diffstat (limited to 'pkgs/applications/misc/blender')
-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 f6d8bf747ac58..4aceeeb9e3555 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 ];
   };
 }