3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/sslscan/default.nix

26 lines
643 B
Nix
Raw Normal View History

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