From 9161d4a8fcc7588a06695d186d9558a1f92426bb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 22 Nov 2022 23:54:53 +0100 Subject: [PATCH] crackmapexec: 5.3.0 -> 5.4.0 Changelog: https://github.com/Porchetta-Industries/CrackMapExec/releases/tag/v5.4.0 --- pkgs/tools/security/crackmapexec/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/security/crackmapexec/default.nix b/pkgs/tools/security/crackmapexec/default.nix index 9646f3a7caf..85b987d78c7 100644 --- a/pkgs/tools/security/crackmapexec/default.nix +++ b/pkgs/tools/security/crackmapexec/default.nix @@ -5,14 +5,14 @@ python3.pkgs.buildPythonApplication rec { pname = "crackmapexec"; - version = "5.3.0"; + version = "5.4.0"; format = "pyproject"; src = fetchFromGitHub { - owner = "byt3bl33d3r"; + owner = "Porchetta-Industries"; repo = "CrackMapExec"; - rev = "v${version}"; - hash = "sha256-wPS1PCvR9Ffp0r9lZZkFATt+i+eR5ap16HzLWDZbJKI="; + rev = "refs/tags/v${version}"; + hash = "sha256-V2n840QyLofTfQE4vtFYGfQwl65sklp+KfNS9RCLvI8="; }; nativeBuildInputs = with python3.pkgs; [ @@ -27,6 +27,7 @@ python3.pkgs.buildPythonApplication rec { dsinternals impacket lsassy + masky msgpack neo4j paramiko @@ -56,7 +57,8 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "Tool for pentesting networks"; - homepage = "https://github.com/byt3bl33d3r/CrackMapExec"; + 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";