blob: 20d8ab4ab5bec26ce3e075b4fddbbd5beb5cc3c6 (
about) (
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
52
53
54
55
56
57
58
59
60
61
62
|
{
lib,
angr,
buildPythonPackage,
cmd2,
coreutils,
fetchFromGitHub,
pygments,
pytestCheckHook,
pythonOlder,
setuptools,
stdenv,
}:
buildPythonPackage rec {
pname = "angrcli";
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "fmagin";
repo = "angr-cli";
tag = "v${version}";
hash = "sha256-egu7jlEk8/i36qQMHztGr959sBt9d5crW8mj6+sKaHI=";
};
postPatch = ''
substituteInPlace tests/test_derefs.py \
--replace-fail "/bin/ls" "${coreutils}/bin/ls"
'';
build-system = [ setuptools ];
dependencies = [
angr
cmd2
pygments
];
nativeCheckInputs = [
coreutils
pytestCheckHook
];
disabledTests = lib.optionals (!stdenv.hostPlatform.isx86) [
# expects the x86 register "rax" to exist
"test_cc"
"test_loop"
"test_max_depth"
];
pythonImportsCheck = [ "angrcli" ];
meta = with lib; {
description = "Python modules to allow easier interactive use of angr";
homepage = "https://github.com/fmagin/angr-cli";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|