about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2024-03-11 22:55:15 +0100
committerThomas Gerbet <thomas@gerbet.me>2024-03-11 22:55:15 +0100
commit41ba7c816bb1061ef2e0b79265c93f1e2bc27240 (patch)
tree6ed3faf9b95f8bef311f47c3e1a220164dbeafc2 /pkgs/tools
parentd4099372a1661a4c82e08dafc4fea5397102d805 (diff)
downloadnixlib-41ba7c816bb1061ef2e0b79265c93f1e2bc27240.tar
nixlib-41ba7c816bb1061ef2e0b79265c93f1e2bc27240.tar.gz
nixlib-41ba7c816bb1061ef2e0b79265c93f1e2bc27240.tar.bz2
nixlib-41ba7c816bb1061ef2e0b79265c93f1e2bc27240.tar.lz
nixlib-41ba7c816bb1061ef2e0b79265c93f1e2bc27240.tar.xz
nixlib-41ba7c816bb1061ef2e0b79265c93f1e2bc27240.tar.zst
nixlib-41ba7c816bb1061ef2e0b79265c93f1e2bc27240.zip
openssh: 9.6p1 -> 9.7p1
Changes:
https://www.openssh.com/txt/release-9.7
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/openssh/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix
index e13e9cb92731..db3e09ce5f12 100644
--- a/pkgs/tools/networking/openssh/default.nix
+++ b/pkgs/tools/networking/openssh/default.nix
@@ -5,11 +5,11 @@ in
 {
   openssh = common rec {
     pname = "openssh";
-    version = "9.6p1";
+    version = "9.7p1";
 
     src = fetchurl {
       url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
-      hash = "sha256-kQIRwHJVqMWtZUORtA7lmABxDdgRndU2LeCThap6d3w=";
+      hash = "sha256-SQQm92bYKidj/KzY2D6j1weYdQx70q/y5X3FZg93P/0=";
     };
 
     extraPatches = [ ./ssh-keysign-8.5.patch ];