about summary refs log tree commit diff
path: root/pkgs/tools/security/sslscan
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2021-03-31 12:50:48 +0200
committerGitHub <noreply@github.com>2021-03-31 12:50:48 +0200
commitb6dad95597932ca8096ee57eddc6d9ec5505f405 (patch)
tree673aa19cdd48909defa0233af10ac04c9a5f6e0b /pkgs/tools/security/sslscan
parent9b9e9cff00b07d680f02d5541756c93735f5074d (diff)
sslscan: 1.11.13 -> 2.0.9 (#118130)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/tools/security/sslscan')
-rw-r--r--pkgs/tools/security/sslscan/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix
index b072b3b5574aa..29762fc527c3f 100644
--- a/pkgs/tools/security/sslscan/default.nix
+++ b/pkgs/tools/security/sslscan/default.nix
@@ -1,14 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, openssl }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, openssl
+}:
 
 stdenv.mkDerivation rec {
   pname = "sslscan";
-  version = "1.11.13";
+  version = "2.0.9";
 
   src = fetchFromGitHub {
     owner = "rbsec";
     repo = "sslscan";
-    rev = "${version}-rbsec";
-    sha256 = "0sa8iw91wi3515lw761j84wagab1x9rxr0mn8m08qj300z2044yk";
+    rev = version;
+    sha256 = "0594svwz4pya0syibar0ahmi5zdjbwd5kg6hrlhfpmmslrsyli6m";
   };
 
   buildInputs = [ openssl ];
@@ -18,8 +22,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Tests SSL/TLS services and discover supported cipher suites";
     homepage = "https://github.com/rbsec/sslscan";
-    license = licenses.gpl3;
+    license = licenses.gpl3Only;
     maintainers = with maintainers; [ fpletz globin ];
-    platforms = platforms.all;
   };
 }