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

28 lines
676 B
Nix
Raw Normal View History

2015-10-09 07:14:24 +00:00
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
2015-10-09 10:08:12 +00:00
name = "sslscan-${version}";
2015-10-09 07:14:24 +00:00
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;
};
}