misconfig-mapper: init at 1.1.0
Tool to uncover security misconfigurations on popular third-party services https://github.com/intigriti/misconfig-mapper
This commit is contained in:
parent
fce4c5c1a1
commit
6576dca12e
1 changed files with 33 additions and 0 deletions
33
pkgs/by-name/mi/misconfig-mapper/package.nix
Normal file
33
pkgs/by-name/mi/misconfig-mapper/package.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "misconfig-mapper";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "intigriti";
|
||||
repo = "misconfig-mapper";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-5FzXtqC8C4iDC8xBalKHlNeSIJ0msMVC7jUXZxSLkLY=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-b2AVWjZXNQPV84sS2wu5xUadZEme/T96O4dGiV5G0dA=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to uncover security misconfigurations on popular third-party services";
|
||||
homepage = "https://github.com/intigriti/misconfig-mapper";
|
||||
changelog = "https://github.com/intigriti/misconfig-mapper/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
mainProgram = "misconfig-mapper";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue