28 lines
648 B
Nix
28 lines
648 B
Nix
{ stdenv, fetchFromGitHub, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sslscan-${version}";
|
|
version = "1.11.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rbsec";
|
|
repo = "sslscan";
|
|
rev = "${version}-rbsec";
|
|
sha256 = "007lf3rxcn9nz6jrki3mavgd9sd2hmm9nzp2g13h0ri51yc3bkp0";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
installFlags = [
|
|
"PREFIX=$(out)"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|