blob: 7d734da98a29217f374f8b1cafa1c3beb3c71f13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
lib,
buildPythonPackage,
capstone,
stdenv,
setuptools,
}:
buildPythonPackage rec {
pname = "capstone";
version = lib.getVersion capstone;
format = "setuptools";
src = capstone.src;
sourceRoot = "${src.name}/bindings/python";
# libcapstone.a is not built with BUILD_SHARED_LIBS. For some reason setup.py
# checks if it exists but it is not really needed. Most likely a bug in setup.py.
postPatch = ''
ln -s ${capstone}/lib/libcapstone${stdenv.targetPlatform.extensions.sharedLibrary} prebuilt/
touch prebuilt/libcapstone${stdenv.targetPlatform.extensions.staticLibrary}
substituteInPlace setup.py --replace manylinux1 manylinux2014
'';
# aarch64 only available from MacOS SDK 11 onwards, so fix the version tag.
# otherwise, bdist_wheel may detect "macosx_10_6_arm64" which doesn't make sense.
setupPyBuildFlags = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
"--plat-name"
"macosx_11_0"
];
propagatedBuildInputs = [ setuptools ];
checkPhase = ''
mv capstone capstone.hidden
pushd tests
patchShebangs test_*
make -f ../Makefile check
popd
'';
meta = {
homepage = "http://www.capstone-engine.org/";
license = lib.licenses.bsdOriginal;
description = "Python bindings for Capstone disassembly engine";
maintainers = with lib.maintainers; [
bennofs
ris
];
};
}
|