commix: init at 3.4

This commit is contained in:
Fabian Affolter 2022-06-15 09:46:19 +02:00
parent c01fa626c8
commit 5684a598cd
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "commix";
version = "3.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "commixproject";
repo = pname;
rev = "v${version}";
hash = "sha256-JM4NE77LpgsdWhzPe/8K0sQhOSpzDu9usuH7pfQ6dR0=";
};
# Project has no tests
doCheck = false;
meta = with lib; {
description = "Automated Command Injection Exploitation Tool";
homepage = "https://github.com/commixproject/commix";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -356,6 +356,8 @@ with pkgs;
commit-formatter = callPackage ../applications/version-management/commit-formatter { };
commix = callPackage ../tools/security/commix { };
containerpilot = callPackage ../applications/networking/cluster/containerpilot { };
coordgenlibs = callPackage ../development/libraries/coordgenlibs { };