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

26 lines
648 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}";
2018-01-16 22:42:54 +01:00
version = "1.11.11";
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";
2018-01-16 22:42:54 +01:00
sha256 = "0k1agdz52pdgihwfwbygp0mlwkf757vcwhvwc0mrz606l2wbmwmr";
2015-10-09 09:14:24 +02:00
};
buildInputs = [ openssl ];
makeFlags = [ "PREFIX=$(out)" "CC=cc" ];
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;
};
}