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

28 lines
648 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}";
version = "1.11.7";
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";
sha256 = "007lf3rxcn9nz6jrki3mavgd9sd2hmm9nzp2g13h0ri51yc3bkp0";
2015-10-09 00:14:24 -07:00
};
buildInputs = [ openssl ];
installFlags = [
2016-05-31 10:48:04 -07:00
"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;
};
}