nixpkgs/pkgs/tools/security/sslscan/default.nix

27 lines
640 B
Nix
Raw Normal View History

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