depot/third_party/nixpkgs/pkgs/tools/security/commix/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

27 lines
611 B
Nix

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "commix";
version = "3.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "commixproject";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-QdhJp7oUqOY8Z36haIrHgP4hVGaFXlOxNVg1ams7uhg=";
};
# 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 ];
};
}