Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
770 B
Nix
39 lines
770 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "polenum";
|
|
version = "1.7";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Wh1t3Fox";
|
|
repo = "polenum";
|
|
tag = version;
|
|
hash = "sha256-/xjGwolpbkh/ig0N9gpSTQMIJ/2ayThRBzx3tF1kfjM=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
impacket
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -vD $pname.py $out/bin/$pname
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to get the password policy from a windows machine";
|
|
homepage = "https://github.com/Wh1t3Fox/polenum";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ exploitoverload ];
|
|
mainProgram = "polenum";
|
|
};
|
|
}
|