35 lines
882 B
Nix
35 lines
882 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "commix";
|
|
version = "3.7";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "commixproject";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-pqfb0CkWTPq6B8T7nn25lWuEQFRRziCDWYm5a1S3mIY=";
|
|
};
|
|
|
|
postInstall = ''
|
|
# Helper files are not handled by setup.py
|
|
mkdir -p $out/${python3.sitePackages}/src/txt
|
|
install -vD src/txt/* $out/${python3.sitePackages}/src/txt/
|
|
'';
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Automated Command Injection Exploitation Tool";
|
|
homepage = "https://github.com/commixproject/commix";
|
|
changelog = "https://github.com/commixproject/commix/releases/tag/v${version}";
|
|
license = with licenses; [ gpl3Plus ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|