From 03ae92a17d0f9683a1da5eaee77b0497a0d7ba66 Mon Sep 17 00:00:00 2001 From: hacker1024 Date: Tue, 24 Oct 2023 20:39:59 +1100 Subject: [PATCH] flutter: Remove aarch64-darwin platform There are no aarch64-darwin host artifacts. Development should be done with Rosetta 2. - https://github.com/flutter/flutter/issues/60118 - https://github.com/flutter/flutter/issues/69157 - https://github.com/flutter/flutter/issues/101138 --- pkgs/development/compilers/flutter/flutter.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/flutter/flutter.nix b/pkgs/development/compilers/flutter/flutter.nix index 250aaae9951c..69efe678dc5a 100644 --- a/pkgs/development/compilers/flutter/flutter.nix +++ b/pkgs/development/compilers/flutter/flutter.nix @@ -122,7 +122,7 @@ let ''; homepage = "https://flutter.dev"; license = licenses.bsd3; - platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; + platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ]; maintainers = with maintainers; [ babariviere ericdallo FlafyDev hacker1024 ]; }; };