lol

go365: init at 1.4

+31
+29
pkgs/tools/security/go365/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "go365"; 8 + version = "1.4"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "optiv"; 12 + repo = "Go365"; 13 + rev = version; 14 + sha256 = "0dh89hf00fr62gjdw2lb1ncdxd26nvlsh2s0i6981bp8xfg2pk5r"; 15 + }; 16 + 17 + vendorSha256 = "0fx2966xfzmi8yszw1cq6ind3i2dvacdwfs029v3bq0n8bvbm3r2"; 18 + 19 + postInstall = '' 20 + mv $out/bin/Go365 $out/bin/$pname 21 + ''; 22 + 23 + meta = with lib; { 24 + description = "Office 365 enumeration tool"; 25 + homepage = "https://github.com/optiv/Go365"; 26 + license = with licenses; [ mit ]; 27 + maintainers = with maintainers; [ fab ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 31483 31483 binutils-arm-embedded = pkgsCross.arm-embedded.buildPackages.binutils; 31484 31484 }; 31485 31485 31486 + go365 = callPackage ../tools/security/go365 { }; 31487 + 31486 31488 gobuster = callPackage ../tools/security/gobuster { }; 31487 31489 31488 31490 gotestwaf = callPackage ../tools/security/gotestwaf { };