commix: init at 3.4
This commit is contained in:
parent
c01fa626c8
commit
5684a598cd
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/security/commix/default.nix
Normal file
27
pkgs/tools/security/commix/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue