forked from mirrors/nixpkgs
go365: init at 1.4
This commit is contained in:
parent
7c1a58a630
commit
a35c28c109
29
pkgs/tools/security/go365/default.nix
Normal file
29
pkgs/tools/security/go365/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "go365";
|
||||
version = "1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "optiv";
|
||||
repo = "Go365";
|
||||
rev = version;
|
||||
sha256 = "0dh89hf00fr62gjdw2lb1ncdxd26nvlsh2s0i6981bp8xfg2pk5r";
|
||||
};
|
||||
|
||||
vendorSha256 = "0fx2966xfzmi8yszw1cq6ind3i2dvacdwfs029v3bq0n8bvbm3r2";
|
||||
|
||||
postInstall = ''
|
||||
mv $out/bin/Go365 $out/bin/$pname
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Office 365 enumeration tool";
|
||||
homepage = "https://github.com/optiv/Go365";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -31483,6 +31483,8 @@ with pkgs;
|
|||
binutils-arm-embedded = pkgsCross.arm-embedded.buildPackages.binutils;
|
||||
};
|
||||
|
||||
go365 = callPackage ../tools/security/go365 { };
|
||||
|
||||
gobuster = callPackage ../tools/security/gobuster { };
|
||||
|
||||
gotestwaf = callPackage ../tools/security/gotestwaf { };
|
||||
|
|
Loading…
Reference in a new issue