657f08b14c
GitOrigin-RevId: 807e9154dcb16384b1b765ebe9cd2bba2ac287fd
93 lines
1.8 KiB
Nix
93 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
archinfo,
|
|
buildPythonPackage,
|
|
cart,
|
|
cffi,
|
|
fetchFromGitHub,
|
|
minidump,
|
|
pefile,
|
|
pyelftools,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyvex,
|
|
pyxbe,
|
|
setuptools,
|
|
sortedcontainers,
|
|
}:
|
|
|
|
let
|
|
# The binaries are following the argr projects release cycle
|
|
version = "9.2.125";
|
|
|
|
# Binary files from https://github.com/angr/binaries (only used for testing and only here)
|
|
binaries = fetchFromGitHub {
|
|
owner = "angr";
|
|
repo = "binaries";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-22srtaY8CWT+XqnSZpMndBEVe20rDL+2LpJr9MByyLU=";
|
|
};
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "cle";
|
|
inherit version;
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "angr";
|
|
repo = "cle";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Xe9tOt94kSKsP0Xc8K0OaeyiUKFUkujZt9AsamgKwBw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonRelaxDeps = [ "pyvex" ];
|
|
|
|
dependencies = [
|
|
archinfo
|
|
cart
|
|
cffi
|
|
minidump
|
|
pefile
|
|
pyelftools
|
|
pyvex
|
|
pyxbe
|
|
sortedcontainers
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Place test binaries in the right location (location is hard-coded in the tests)
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
cp -r ${binaries} $HOME/binaries
|
|
'';
|
|
|
|
disabledTests = [
|
|
# PPC tests seems to fails
|
|
"test_ppc_rel24_relocation"
|
|
"test_ppc_addr16_ha_relocation"
|
|
"test_ppc_addr16_lo_relocation"
|
|
"test_plt_full_relro"
|
|
# Test fails
|
|
"test_tls_pe_incorrect_tls_data_start"
|
|
"test_x86"
|
|
"test_x86_64"
|
|
# The required parts is not present on Nix
|
|
"test_remote_file_map"
|
|
];
|
|
|
|
pythonImportsCheck = [ "cle" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python loader for many binary formats";
|
|
homepage = "https://github.com/angr/cle";
|
|
license = with licenses; [ bsd2 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|