about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-4.x/4.8/default.nix
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2022-08-16 03:09:24 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2022-08-16 03:09:24 -0700
commit0bab8f164ca3efd360299065e9d75a27304798de (patch)
tree2ff6569d47da17c75941c9355d9710d166df9924 /pkgs/development/libraries/qt-4.x/4.8/default.nix
parentc4ed73fabd7f8bb2822afc50fe9fc2deea724464 (diff)
qt4: add aarch64-darwin to list of bad platforms
I am not sure how to make Qt4 work on aarch64-darwin. It appears to be
nontrivial, and I didn't find patches anywhere.
Diffstat (limited to 'pkgs/development/libraries/qt-4.x/4.8/default.nix')
-rw-r--r--pkgs/development/libraries/qt-4.x/4.8/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix
index 2ff8644e32e43..816b75039612d 100644
--- a/pkgs/development/libraries/qt-4.x/4.8/default.nix
+++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix
@@ -234,6 +234,6 @@ stdenv.mkDerivation rec {
     license     = lib.licenses.lgpl21Plus; # or gpl3
     maintainers = with lib.maintainers; [ orivej lovek323 sander ];
     platforms   = lib.platforms.unix;
-    badPlatforms = [ "x86_64-darwin" ];
+    badPlatforms = [ "x86_64-darwin" "aarch64-darwin" ];
   };
 }