From 78a027604a5b5e7ff27c948fdaf5bbff2b77a3e4 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 9 Oct 2015 09:14:24 +0200 Subject: sslscan: init at 1.11.0 --- pkgs/tools/security/sslscan/default.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pkgs/tools/security/sslscan/default.nix (limited to 'pkgs/tools/security/sslscan') diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix new file mode 100644 index 000000000000..fd06ef3b66c6 --- /dev/null +++ b/pkgs/tools/security/sslscan/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, openssl }: + +stdenv.mkDerivation rec { + name = "sslcan-${version}"; + version = "1.11.0"; + + src = fetchurl { + url = "https://github.com/rbsec/sslscan/archive/${version}-rbsec.tar.gz"; + sha256 = "19d6vpcihfqs35hni4vigcpqabbnd3sndr5wyvfsladgp40vz3b9"; + }; + + buildInputs = [ openssl ]; + + installFlags = [ + "BINPATH=$(out)/bin" + "MANPATH=$(out)/share/man" + ]; + + 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; + }; +} + -- cgit 1.4.1