summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Hamon <and.ham95@gmail.com>2023-02-10 06:03:35 +0100
committerAndrew Hamon <and.ham95@gmail.com>2023-02-10 06:03:35 +0100
commit2cc4bbe55387c76b33fc9b08918b91241c5e9a0d (patch)
treea89e26f3a1eaf2feb5e2c9e0c5976c0a7fd3a3a6
parent9f6c8925bc19ab67292da521948e5840de807ffd (diff)
downloadnixpkgs-2cc4bbe55387c76b33fc9b08918b91241c5e9a0d.tar
nixpkgs-2cc4bbe55387c76b33fc9b08918b91241c5e9a0d.tar.gz
nixpkgs-2cc4bbe55387c76b33fc9b08918b91241c5e9a0d.tar.bz2
nixpkgs-2cc4bbe55387c76b33fc9b08918b91241c5e9a0d.tar.lz
nixpkgs-2cc4bbe55387c76b33fc9b08918b91241c5e9a0d.tar.xz
nixpkgs-2cc4bbe55387c76b33fc9b08918b91241c5e9a0d.tar.zst
nixpkgs-2cc4bbe55387c76b33fc9b08918b91241c5e9a0d.zip
buck: mark broken on aarch64-darwin
-rw-r--r--pkgs/development/tools/build-managers/buck/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/build-managers/buck/default.nix b/pkgs/development/tools/build-managers/buck/default.nix
index d94dccf7fbc..d283e1e321d 100644
--- a/pkgs/development/tools/build-managers/buck/default.nix
+++ b/pkgs/development/tools/build-managers/buck/default.nix
@@ -40,5 +40,7 @@ stdenv.mkDerivation rec {
     maintainers = [ maintainers.jgertm maintainers.marsam ];
     license = licenses.asl20;
     platforms = platforms.all;
+    # https://github.com/facebook/buck/issues/2666
+    broken = stdenv.isDarwin && stdenv.isAarch64;
   };
 }