60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, angr
|
|
, buildPythonPackage
|
|
, cmd2
|
|
, coreutils
|
|
, fetchFromGitHub
|
|
, pygments
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "angrcli";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fmagin";
|
|
repo = "angr-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-a5ajUBQwt3xUNkeSOeGOAFf47wd4UVk+LcuAHGqbq4s=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/test_derefs.py \
|
|
--replace "/bin/ls" "${coreutils}/bin/ls"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
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 ];
|
|
};
|
|
}
|