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

26 lines
643 B
Nix
Raw Normal View History

2016-10-09 03:51:23 -07:00
{ stdenv, fetchFromGitHub, openssl }:
2015-10-09 00:14:24 -07:00
stdenv.mkDerivation rec {
2015-10-09 03:08:12 -07:00
name = "sslscan-${version}";
2017-05-23 04:48:01 -07:00
version = "1.11.10";
2015-10-09 00:14:24 -07:00
2016-10-09 03:51:23 -07:00
src = fetchFromGitHub {
owner = "rbsec";
repo = "sslscan";
rev = "${version}-rbsec";
2017-05-23 04:48:01 -07:00
sha256 = "1bxr7p7nhg4b8wkcm7j2xk10gf370sqcvl06vbgnqd3azp55fhpf";
2015-10-09 00:14:24 -07:00
};
buildInputs = [ openssl ];
2017-02-02 09:57:17 -08:00
installFlags = [ "PREFIX=$(out)" ];
2015-10-09 00:14:24 -07: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;
};
}