File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed 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 = "tlsinfo" ;
9+ version = "0.1.41" ;
10+
11+ src = fetchFromGitHub {
12+ owner = "paepckehh" ;
13+ repo = "tlsinfo" ;
14+ rev = "refs/tags/v${ version } " ;
15+ hash = "sha256-II5/UDWVeEoupM1Ijty2A9M/qwWA2/b4Y68lTkxnJ9o=" ;
16+ } ;
17+
18+ vendorHash = "sha256-IyinAjgK4vm+TkSGQq+XnY9BESsNvXgz84BRzNyZtJY=" ;
19+
20+ ldflags = [
21+ "-s"
22+ "-w"
23+ ] ;
24+
25+ meta = {
26+ changelog = "https://github.com/paepckehh/tlsinfo/releases/tag/v${ version } " ;
27+ homepage = "https://paepcke.de/tlsinfo" ;
28+ description = "Tool to analyze and troubleshoot TLS connections" ;
29+ license = lib . licenses . bsd3 ;
30+ mainProgram = "tlsinfo" ;
31+ maintainers = with lib . maintainers ; [ paepcke ] ;
32+ } ;
33+ }
You can’t perform that action at this time.
0 commit comments