3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/sslscan/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
626 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, openssl
}:
2015-10-09 08:14:24 +01:00
stdenv.mkDerivation rec {
pname = "sslscan";
2022-06-23 21:09:23 +01:00
version = "2.0.14";
2015-10-09 08:14:24 +01:00
2016-10-09 11:51:23 +01:00
src = fetchFromGitHub {
owner = "rbsec";
repo = "sslscan";
rev = version;
2022-06-23 21:09:23 +01:00
sha256 = "sha256-CqfxiTRIgrr4J6qThDFqohkxJj5Byf0vQzG+voAEzag=";
2015-10-09 08:14:24 +01:00
};
buildInputs = [ openssl ];
makeFlags = [ "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ];
2015-10-09 08:14:24 +01:00
meta = with lib; {
2015-10-09 08:14:24 +01:00
description = "Tests SSL/TLS services and discover supported cipher suites";
homepage = "https://github.com/rbsec/sslscan";
license = licenses.gpl3Only;
2015-10-09 08:14:24 +01:00
maintainers = with maintainers; [ fpletz globin ];
};
}