2022-06-15 08:46:19 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "commix";
|
2022-11-18 14:03:00 +00:00
|
|
|
version = "3.6";
|
2022-06-15 08:46:19 +01:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "commixproject";
|
|
|
|
repo = pname;
|
2022-07-04 02:36:01 +01:00
|
|
|
rev = "refs/tags/v${version}";
|
2022-11-18 14:03:00 +00:00
|
|
|
hash = "sha256-QdhJp7oUqOY8Z36haIrHgP4hVGaFXlOxNVg1ams7uhg=";
|
2022-06-15 08:46:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Project has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Automated Command Injection Exploitation Tool";
|
|
|
|
homepage = "https://github.com/commixproject/commix";
|
2023-01-23 20:30:31 +00:00
|
|
|
changelog = "https://github.com/commixproject/commix/releases/tag/v${version}";
|
2022-06-15 08:46:19 +01:00
|
|
|
license = with licenses; [ gpl3Plus ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|