about summary refs log tree commit diff
path: root/pkgs/tools/security/crackmapexec/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/crackmapexec/default.nix')
-rw-r--r--pkgs/tools/security/crackmapexec/default.nix66
1 files changed, 0 insertions, 66 deletions
diff --git a/pkgs/tools/security/crackmapexec/default.nix b/pkgs/tools/security/crackmapexec/default.nix
deleted file mode 100644
index 7db3c804f911c..0000000000000
--- a/pkgs/tools/security/crackmapexec/default.nix
+++ /dev/null
@@ -1,66 +0,0 @@
-{ lib
-, fetchFromGitHub
-, python3
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "crackmapexec";
-  version = "5.4.0";
-  format = "pyproject";
-
-  src = fetchFromGitHub {
-    owner = "Porchetta-Industries";
-    repo = "CrackMapExec";
-    rev = "refs/tags/v${version}";
-    hash = "sha256-V2n840QyLofTfQE4vtFYGfQwl65sklp+KfNS9RCLvI8=";
-  };
-
-  nativeBuildInputs = with python3.pkgs; [
-    poetry-core
-    pythonRelaxDepsHook
-  ];
-
-  propagatedBuildInputs = with python3.pkgs; [
-    aioconsole
-    aardwolf
-    beautifulsoup4
-    dsinternals
-    impacket
-    lsassy
-    masky
-    msgpack
-    neo4j
-    paramiko
-    pylnk3
-    pypsrp
-    pywerview
-    requests
-    requests-ntlm
-    termcolor
-    terminaltables
-    xmltodict
-  ];
-
-  postPatch = ''
-    substituteInPlace pyproject.toml \
-      --replace '{ git = "https://github.com/mpgn/impacket.git", branch = "master" }' '"x"'
-  '';
-
-  pythonRelaxDeps = true;
-
-  # Project has no tests
-  doCheck = false;
-
-  pythonImportsCheck = [
-    "cme"
-  ];
-
-  meta = with lib; {
-    description = "Tool for pentesting networks";
-    homepage = "https://github.com/Porchetta-Industries/CrackMapExec";
-    changelog = "https://github.com/Porchetta-Industries/CrackMapExec/releases/tag/v${version}";
-    license = with licenses; [ bsd2 ];
-    maintainers = with maintainers; [ fab ];
-    mainProgram = "cme";
-  };
-}