nixpkgs/pkgs/development/python-modules/ROPGadget/default.nix
R. RyanTM 178bf6921b python37Packages.ROPGadget: 5.4 -> 5.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-ropgadget/versions
2019-07-17 09:36:00 +02:00

22 lines
549 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, capstone}:
buildPythonPackage rec {
pname = "ROPGadget";
version = "5.8";
src = fetchPypi {
inherit pname version;
sha256 = "184qncm2ss474prphw0xnf7ifkpgj955dzlb2vqq94z6xvf3xyd9";
};
propagatedBuildInputs = [ capstone ];
meta = with stdenv.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 ];
};
}