Skip to content

Commit fc55cdb

Browse files
authored
Merge pull request NixOS#309103 from fabaff/misconfig-mapper
misconfig-mapper: init at 1.1.0
2 parents c81965f + 6576dca commit fc55cdb

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
}:
6+
7+
buildGoModule rec {
8+
pname = "misconfig-mapper";
9+
version = "1.1.0";
10+
11+
src = fetchFromGitHub {
12+
owner = "intigriti";
13+
repo = "misconfig-mapper";
14+
rev = "refs/tags/v${version}";
15+
hash = "sha256-5FzXtqC8C4iDC8xBalKHlNeSIJ0msMVC7jUXZxSLkLY=";
16+
};
17+
18+
vendorHash = "sha256-b2AVWjZXNQPV84sS2wu5xUadZEme/T96O4dGiV5G0dA=";
19+
20+
ldflags = [
21+
"-s"
22+
"-w"
23+
];
24+
25+
meta = with lib; {
26+
description = "Tool to uncover security misconfigurations on popular third-party services";
27+
homepage = "https://github.com/intigriti/misconfig-mapper";
28+
changelog = "https://github.com/intigriti/misconfig-mapper/releases/tag/v${version}";
29+
license = licenses.mit;
30+
maintainers = with maintainers; [ fab ];
31+
mainProgram = "misconfig-mapper";
32+
};
33+
}

0 commit comments

Comments
 (0)