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:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user