python3.pkgs.capstone: mark broken on non-x86_64

Since this tries to build an x86_64 wheel, it won't work on any
non-x86_64 platform.  It doesn't make sense to single out aarch64
here.
This commit is contained in:
Alyssa Ross
2021-11-13 11:36:25 +00:00
parent 9075835128
commit 9de30004db
@@ -32,6 +32,6 @@ buildPythonPackage rec {
description = "Python bindings for Capstone disassembly engine";
maintainers = with maintainers; [ bennofs ris ];
# creates a manylinux2014-x86_64 wheel
broken = stdenv.isAarch64;
broken = !stdenv.isx86_64;
};
}