File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
pkgs/by-name/mi/misconfig-mapper Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments