mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
32 lines
766 B
Nix
32 lines
766 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ldapnomnom";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lkarlslund";
|
|
repo = "ldapnomnom";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-enFTv8RqZpyS6LEqGIi55VMhArJy7Nhv0YhuWAOWyN0=";
|
|
};
|
|
|
|
vendorHash = "sha256-Iry9GoKOiXf83YudpmgHQRaP8GV4zokpX2mRAXoxSDQ=";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to anonymously bruteforce usernames from Domain controllers";
|
|
homepage = "https://github.com/lkarlslund/ldapnomnom";
|
|
changelog = "https://github.com/lkarlslund/ldapnomnom/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "ldapnomnom";
|
|
};
|
|
}
|