ce641f4048
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
35 lines
719 B
Nix
35 lines
719 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, capstone
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ropgadget";
|
|
version = "6.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JonathanSalwan";
|
|
repo = "ROPgadget";
|
|
rev = "v${version}";
|
|
sha256 = "1i0gx0cwhxk6d8byvck17hh83szz3k6ndd118ha3q0r0msap0lz1";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
capstone
|
|
];
|
|
|
|
# Test suite is working with binaries
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"ropgadget"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to search for gadgets in binaries to facilitate ROP exploitation";
|
|
homepage = "http://shell-storm.org/project/ROPgadget/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bennofs ];
|
|
};
|
|
}
|