From f42dbbdfe202d764ec85335ee9910e861c49c2d7 Mon Sep 17 00:00:00 2001 From: Kira Bruneau Date: Fri, 29 Jul 2022 22:44:02 -0400 Subject: [PATCH] poke: mark aarch64-darwin as broken instead of a bad platform --- pkgs/applications/editors/poke/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/poke/default.nix b/pkgs/applications/editors/poke/default.nix index df20645a33e1..fba01f5bdb05 100644 --- a/pkgs/applications/editors/poke/default.nix +++ b/pkgs/applications/editors/poke/default.nix @@ -108,7 +108,7 @@ in stdenv.mkDerivation rec { license = licenses.gpl3Plus; maintainers = with maintainers; [ AndersonTorres kira-bruneau ]; platforms = platforms.unix; - badPlatforms = [ "aarch64-darwin" ]; # Undefined symbols for architecture arm64 + broken = stdenv.isDarwin && stdenv.isAarch64; # Undefined symbols for architecture arm64 }; }