From f104c1434bb9458da9b49c0c9a7066c8e3d967c3 Mon Sep 17 00:00:00 2001 From: Thomas Wu Date: Sat, 27 Nov 2021 14:49:46 +0800 Subject: [PATCH] tinyscheme: add aarch64-darwin to badplatforms Tinyscheme is not supported for aarch64-darwin --- pkgs/development/interpreters/tinyscheme/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/interpreters/tinyscheme/default.nix b/pkgs/development/interpreters/tinyscheme/default.nix index 3d4cfea465a..0590062b3a4 100644 --- a/pkgs/development/interpreters/tinyscheme/default.nix +++ b/pkgs/development/interpreters/tinyscheme/default.nix @@ -29,5 +29,6 @@ stdenv.mkDerivation rec { license = licenses.bsdOriginal; maintainers = [ maintainers.ebzzry ]; platforms = platforms.unix; + badPlatforms = [ "aarch64-darwin" ]; }; }