Merge pull request #145741 from alyssais/capstone

python3.pkgs.capstone: mark broken on non-x86_64
This commit is contained in:
Fabian Affolter 2021-11-14 13:51:22 +01:00 committed by GitHub
commit 909fa78c54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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