fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 python3,
4 fetchFromGitHub,
5}:
6
7python3.pkgs.buildPythonApplication rec {
8 pname = "certsync";
9 version = "0.1.6";
10 pyproject = true;
11
12 src = fetchFromGitHub {
13 owner = "zblurx";
14 repo = "certsync";
15 tag = version;
16 hash = "sha256-UNeO9Ldf6h6ykziKVCdAoBIzL5QedbRLFEwyeWDCtUU=";
17 };
18
19 pythonRelaxDeps = [ "certipy-ad" ];
20
21 build-system = with python3.pkgs; [ poetry-core ];
22
23 dependencies = with python3.pkgs; [
24 certipy-ad
25 tqdm
26 ];
27
28 pythonImportsCheck = [ "certsync" ];
29
30 meta = with lib; {
31 description = "Dump NTDS with golden certificates and UnPAC the hash";
32 homepage = "https://github.com/zblurx/certsync";
33 changelog = "https://github.com/zblurx/certsync/releases/tag/${src.tag}";
34 license = licenses.mit;
35 maintainers = with maintainers; [ fab ];
36 mainProgram = "certsync";
37 };
38}