1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00
nixpkgs/pkgs/tools/security/sslscan/default.nix

28 lines
648 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 {
2015-10-09 11:08:12 +01:00
name = "sslscan-${version}";
version = "1.11.7";
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";
sha256 = "007lf3rxcn9nz6jrki3mavgd9sd2hmm9nzp2g13h0ri51yc3bkp0";
2015-10-09 08:14:24 +01:00
};
buildInputs = [ openssl ];
installFlags = [
2016-05-31 18:48:04 +01:00
"PREFIX=$(out)"
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;
};
}