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:
parent
9075835128
commit
9de30004db
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue