116 lines
1.8 KiB
Nix
116 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
ailment,
|
|
archinfo,
|
|
buildPythonPackage,
|
|
cachetools,
|
|
capstone,
|
|
cffi,
|
|
claripy,
|
|
cle,
|
|
cppheaderparser,
|
|
dpkt,
|
|
fetchFromGitHub,
|
|
gitpython,
|
|
itanium-demangler,
|
|
mulpyplexer,
|
|
nampa,
|
|
networkx,
|
|
progressbar2,
|
|
protobuf,
|
|
psutil,
|
|
pycparser,
|
|
pyformlang,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
pyvex,
|
|
rich,
|
|
rpyc,
|
|
setuptools,
|
|
sortedcontainers,
|
|
sqlalchemy,
|
|
sympy,
|
|
unicorn,
|
|
unique-log-filter,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "angr";
|
|
version = "9.2.99";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "angr";
|
|
repo = "angr";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-R23sMjx7SjwNXGS2DQKoZS6vayuHp7/97uCgKM8yejA=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "capstone" ];
|
|
|
|
build-system = [
|
|
pythonRelaxDepsHook
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
ailment
|
|
archinfo
|
|
cachetools
|
|
capstone
|
|
cffi
|
|
claripy
|
|
cle
|
|
cppheaderparser
|
|
dpkt
|
|
gitpython
|
|
itanium-demangler
|
|
mulpyplexer
|
|
nampa
|
|
networkx
|
|
progressbar2
|
|
protobuf
|
|
psutil
|
|
pycparser
|
|
pyformlang
|
|
pyvex
|
|
rich
|
|
rpyc
|
|
sortedcontainers
|
|
sqlalchemy
|
|
sympy
|
|
unicorn
|
|
unique-log-filter
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
AngrDB = [ sqlalchemy ];
|
|
};
|
|
|
|
setupPyBuildFlags = lib.optionals stdenv.isLinux [
|
|
"--plat-name"
|
|
"linux"
|
|
];
|
|
|
|
# Tests have additional requirements, e.g., pypcode and angr binaries
|
|
# cle is executing the tests with the angr binaries
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"angr"
|
|
"claripy"
|
|
"cle"
|
|
"pyvex"
|
|
"archinfo"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Powerful and user-friendly binary analysis platform";
|
|
homepage = "https://angr.io/";
|
|
license = with licenses; [ bsd2 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|