1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00
nixpkgs/pkgs/tools/security/sslscan/default.nix

26 lines
638 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 {
pname = "sslscan";
2019-04-02 08:40:01 +01:00
version = "1.11.13";
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";
2019-04-02 08:40:01 +01:00
sha256 = "0sa8iw91wi3515lw761j84wagab1x9rxr0mn8m08qj300z2044yk";
2015-10-09 08:14:24 +01:00
};
buildInputs = [ openssl ];
makeFlags = [ "PREFIX=$(out)" "CC=cc" ];
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;
};
}