3cbfd2b52c
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
29 lines
657 B
Nix
29 lines
657 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gomapenum";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nodauf";
|
|
repo = "GoMapEnum";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-6WZTmRse3mj1bimHE81JdSc4VKpMFbcJN3U4zgHMzJc=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-Z/uLZIPKd75P9nI7kTFOwzWFkRTVwUojYEQms4OJ6Bk=";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/src $out/bin/$pname
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tools for user enumeration and password bruteforce";
|
|
homepage = "https://github.com/nodauf/GoMapEnum";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|