lol
at 24.11-pre 32 lines 766 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "ldapnomnom"; 8 version = "1.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "lkarlslund"; 12 repo = "ldapnomnom"; 13 rev = "refs/tags/v${version}"; 14 hash = "sha256-enFTv8RqZpyS6LEqGIi55VMhArJy7Nhv0YhuWAOWyN0="; 15 }; 16 17 vendorHash = "sha256-Iry9GoKOiXf83YudpmgHQRaP8GV4zokpX2mRAXoxSDQ="; 18 19 ldflags = [ 20 "-w" 21 "-s" 22 ]; 23 24 meta = with lib; { 25 description = "Tool to anonymously bruteforce usernames from Domain controllers"; 26 homepage = "https://github.com/lkarlslund/ldapnomnom"; 27 changelog = "https://github.com/lkarlslund/ldapnomnom/releases/tag/v${version}"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ fab ]; 30 mainProgram = "ldapnomnom"; 31 }; 32}