depot/third_party/nixpkgs/pkgs/development/python-modules/ropgadget/default.nix
Default email 8a45d4525b Project import generated by Copybara.
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
2022-03-30 11:31:56 +02:00

39 lines
788 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, capstone
, pythonOlder
}:
buildPythonPackage rec {
pname = "ropgadget";
version = "6.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "JonathanSalwan";
repo = "ROPgadget";
rev = "v${version}";
hash = "sha256-zOTbncsOvmLQMZGpcRLviSZP/d1cQTQHXCLUKyEgVBk=";
};
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 ];
};
}