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-12 21:55:47 +00:00
parent 9075835128
commit 9de30004db
No known key found for this signature in database
GPG key ID: F9DBED4859B271C0

View file

@ -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;
};
}