openssh: 9.5p1 -> 9.6p1

This commit is contained in:
Sandro Jäckel 2023-12-18 20:34:20 +01:00
parent 7ed419e80f
commit 7d565226df
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 2 additions and 3 deletions

View file

@ -13,7 +13,6 @@
# package without splicing See: https://github.com/NixOS/nixpkgs/pull/107606
, pkgs
, fetchurl
, fetchpatch
, autoreconfHook
, zlib
, openssl

View file

@ -5,11 +5,11 @@ in
{
openssh = common rec {
pname = "openssh";
version = "9.5p1";
version = "9.6p1";
src = fetchurl {
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
hash = "sha256-8Cbnt5un+1QPdRgq+W3IqPHbOV+SK7yfbKYDZyaGCGs=";
hash = "sha256-kQIRwHJVqMWtZUORtA7lmABxDdgRndU2LeCThap6d3w=";
};
extraPatches = [ ./ssh-keysign-8.5.patch ];