Merge pull request #259309 from r-ryantm/auto-update/sslscan

sslscan: 2.1.0 -> 2.1.1
This commit is contained in:
Fabian Affolter 2023-10-06 23:00:24 +02:00 committed by GitHub
commit 45b469ec29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "sslscan";
version = "2.1.0";
version = "2.1.1";
src = fetchFromGitHub {
owner = "rbsec";
repo = "sslscan";
rev = version;
sha256 = "sha256-sEWWmfTdzqDoTyERoJUZ1/xqeRFcshc72mXzecij4TI=";
rev = "refs/tags/${version}";
hash = "sha256-AsOuNJ5adI7/8A6siK4MzLtpBstsU7JxX1d6WWVJHAY=";
};
buildInputs = [ openssl ];
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Tests SSL/TLS services and discover supported cipher suites";
homepage = "https://github.com/rbsec/sslscan";
changelog = "https://github.com/rbsec/sslscan/blob/${version}/Changelog";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fpletz globin ];
};