mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
gomapenum: init at 1.0.0
This commit is contained in:
parent
5e4feb3c2d
commit
1f4809b3f4
29
pkgs/tools/security/gomapenum/default.nix
Normal file
29
pkgs/tools/security/gomapenum/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -1797,6 +1797,8 @@ with pkgs;
|
||||
|
||||
gomatrix = callPackage ../applications/misc/gomatrix { };
|
||||
|
||||
gomapenum = callPackage ../tools/security/gomapenum { };
|
||||
|
||||
gopacked = callPackage ../applications/misc/gopacked { };
|
||||
|
||||
gucci = callPackage ../tools/text/gucci { };
|
||||
|
Loading…
Reference in New Issue
Block a user