blob: 92994012414601b509b6dfd7eff1f48cbdc246c1 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
stdenv,
fetchFromGitHub,
makeWrapper,
lib,
dnsutils,
coreutils,
openssl,
net-tools,
util-linux,
procps,
}:
stdenv.mkDerivation rec {
pname = "testssl.sh";
version = "3.2.1";
src = fetchFromGitHub {
owner = "drwetter";
repo = "testssl.sh";
rev = "v${version}";
sha256 = "sha256-jVrEgTgAvu/N0Ijdl4Lya05Q/af7jGTlJBNiYt1X3tI=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
coreutils # for printf
dnsutils # for dig
net-tools # for hostname
openssl # for openssl
procps # for ps
util-linux # for hexdump
];
postPatch = ''
substituteInPlace testssl.sh \
--replace TESTSSL_INSTALL_DIR:-\"\" TESTSSL_INSTALL_DIR:-\"$out\" \
--replace PROG_NAME=\"\$\(basename\ \"\$0\"\)\" PROG_NAME=\"testssl.sh\"
'';
installPhase = ''
install -D testssl.sh $out/bin/testssl.sh
cp -r etc $out
wrapProgram $out/bin/testssl.sh --prefix PATH ':' ${lib.makeBinPath buildInputs}
'';
meta = with lib; {
description = "CLI tool to check a server's TLS/SSL capabilities";
longDescription = ''
CLI tool which checks a server's service on any port for the support of
TLS/SSL ciphers, protocols as well as recent cryptographic flaws and more.
'';
homepage = "https://testssl.sh/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ etu ];
mainProgram = "testssl.sh";
};
}
|