summary refs log tree commit diff
path: root/pkgs/tools/security/sslscan/default.nix
blob: dd124c4efe6d05723a97a8add0e718a8794cf095 (plain) (blame)
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
{ stdenv, fetchurl, openssl }:

stdenv.mkDerivation rec {
  name = "sslscan-${version}";
  version = "1.11.0";

  src = fetchurl {
    url = "https://github.com/rbsec/sslscan/archive/${version}-rbsec.tar.gz";
    sha256 = "19d6vpcihfqs35hni4vigcpqabbnd3sndr5wyvfsladgp40vz3b9";
  };

  buildInputs = [ openssl ];

  installFlags = [
    "BINPATH=$(out)/bin"
    "MANPATH=$(out)/share/man"
  ];

  meta = with stdenv.lib; {
    description = "Tests SSL/TLS services and discover supported cipher suites";
    homepage = https://github.com/rbsec/sslscan;
    license = licenses.gpl3;
    maintainers = with maintainers; [ fpletz globin ];
    platforms = platforms.all;
  };
}