summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-10-06 23:00:24 +0200
committerGitHub <noreply@github.com>2023-10-06 23:00:24 +0200
commit45b469ec29e1df29cf3053576901cbeb2803c591 (patch)
tree1c8fe076a004faf1a1b787fc8cbe9780de66fff5 /pkgs/tools/security
parentefbbd73736b4222d1fd1a4e6a63c093c5d0af80e (diff)
parent192ff93aee3df69abbb6a62a56fe2c8d328a0eb0 (diff)
downloadnixpkgs-45b469ec29e1df29cf3053576901cbeb2803c591.tar
nixpkgs-45b469ec29e1df29cf3053576901cbeb2803c591.tar.gz
nixpkgs-45b469ec29e1df29cf3053576901cbeb2803c591.tar.bz2
nixpkgs-45b469ec29e1df29cf3053576901cbeb2803c591.tar.lz
nixpkgs-45b469ec29e1df29cf3053576901cbeb2803c591.tar.xz
nixpkgs-45b469ec29e1df29cf3053576901cbeb2803c591.tar.zst
nixpkgs-45b469ec29e1df29cf3053576901cbeb2803c591.zip
Merge pull request #259309 from r-ryantm/auto-update/sslscan
sslscan: 2.1.0 -> 2.1.1
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/sslscan/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix
index 6e533a77b92..55207b1231f 100644
--- a/pkgs/tools/security/sslscan/default.nix
+++ b/pkgs/tools/security/sslscan/default.nix
@@ -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 ];
   };