mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
8817036a31
this allows us to keep the two packages in sync and handle overrides more flexibly
36 lines
803 B
Nix
36 lines
803 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, fetchpatch
|
|
, setuptools
|
|
, capstone
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "capstone";
|
|
version = stdenv.lib.getVersion capstone;
|
|
|
|
src = capstone.src;
|
|
sourceRoot = "${capstone.name}/bindings/python";
|
|
|
|
postPatch = ''
|
|
ln -s ${capstone}/lib/libcapstone${stdenv.targetPlatform.extensions.sharedLibrary} prebuilt/
|
|
ln -s ${capstone}/lib/libcapstone.a prebuilt/
|
|
'';
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
checkPhase = ''
|
|
mv capstone capstone.hidden
|
|
patchShebangs test_*
|
|
make check
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.capstone-engine.org/";
|
|
license = licenses.bsdOriginal;
|
|
description = "Python bindings for Capstone disassembly engine";
|
|
maintainers = with maintainers; [ bennofs ris ];
|
|
};
|
|
}
|