nixpkgs/pkgs/tools/security/commix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
611 B
Nix
Raw Normal View History

2022-06-15 09:46:19 +02:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "commix";
2022-11-18 15:03:00 +01:00
version = "3.6";
2022-06-15 09:46:19 +02:00
format = "setuptools";
src = fetchFromGitHub {
owner = "commixproject";
repo = pname;
2022-07-04 03:36:01 +02:00
rev = "refs/tags/v${version}";
2022-11-18 15:03:00 +01:00
hash = "sha256-QdhJp7oUqOY8Z36haIrHgP4hVGaFXlOxNVg1ams7uhg=";
2022-06-15 09:46:19 +02:00
};
# 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 ];
};
}