2015-10-09 09:14:24 +02:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-10-09 12:08:12 +02:00
|
|
|
name = "sslscan-${version}";
|
2016-07-17 17:12:23 +02:00
|
|
|
version = "1.11.7";
|
2015-10-09 09:14:24 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/rbsec/sslscan/archive/${version}-rbsec.tar.gz";
|
2016-07-17 17:12:23 +02:00
|
|
|
sha256 = "0wygz2gm9asvhpfy44333y4pkdja1sbr41hc6mhkxg7a4ys8f9qs";
|
2015-10-09 09:14:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
installFlags = [
|
2016-05-31 19:48:04 +02:00
|
|
|
"PREFIX=$(out)"
|
2015-10-09 09:14:24 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|