commix: init at 3.4

main
Fabian Affolter 2 years ago
parent c01fa626c8
commit 5684a598cd
  1. 27
      pkgs/tools/security/commix/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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…
Cancel
Save