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

26 lines
642 B
Nix
Raw Normal View History

2016-10-09 12:51:23 +02:00
{ stdenv, fetchFromGitHub, openssl }:
2015-10-09 09:14:24 +02:00
stdenv.mkDerivation rec {
2015-10-09 12:08:12 +02:00
name = "sslscan-${version}";
2017-02-02 18:57:17 +01:00
version = "1.11.8";
2015-10-09 09:14:24 +02:00
2016-10-09 12:51:23 +02:00
src = fetchFromGitHub {
owner = "rbsec";
repo = "sslscan";
rev = "${version}-rbsec";
2017-02-02 18:57:17 +01:00
sha256 = "0vm9r0hmpb6ifix2biqbr7za1rld9yx8hi8vf7j69vcm647z7aas";
2015-10-09 09:14:24 +02:00
};
buildInputs = [ openssl ];
2017-02-02 18:57:17 +01:00
installFlags = [ "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;
};
}