Merge pull request #177726 from fabaff/commix

commix: init at 3.4
main
Fabian Affolter 2 years ago committed by GitHub
commit aac5262233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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 ];
};
}

@ -358,6 +358,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