7 stdenv.mkDerivation rec {
11 src = fetchFromGitHub {
15 sha256 = "sha256-YUczZYdrFGNYHoVZJ/HRbULgYWILKeo7lqyndSQO2Kw=";
18 buildInputs = [ openssl ];
20 makeFlags = [ "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ];
23 description = "Tests SSL/TLS services and discover supported cipher suites";
24 homepage = "https://github.com/rbsec/sslscan";
25 license = licenses.gpl3Only;
26 maintainers = with maintainers; [ fpletz globin ];