python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / ldapnomnom / default.nix
blob2a81772f2cd67e30450811f4eaf9af312bd78342
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "ldapnomnom";
8   version = "1.0.7";
10   src = fetchFromGitHub {
11     owner = "lkarlslund";
12     repo = pname;
13     rev = "refs/tags/v${version}";
14     hash = "sha256-eGCg6s3bg7ixXmdwFsugRMLvL/nTE2p53otkfc8OgQU=";
15   };
17   vendorSha256 = "sha256-3ucnLD+qhBSWY2wLtBcsOcuEf1woqHP17qQg7LlERA8=";
19   meta = with lib; {
20     description = "Tool to anonymously bruteforce usernames from Domain controllers";
21     homepage = "https://github.com/lkarlslund/ldapnomnom";
22     license = licenses.mit;
23     maintainers = with maintainers; [ fab ];
24   };