openssh: 9.4p1 -> 9.5p1

This commit is contained in:
Janne Heß
2023-10-04 21:30:42 +02:00
parent 1486c62d2c
commit 2d99e37a9b
2 changed files with 2 additions and 10 deletions
-8
View File
@@ -45,14 +45,6 @@ stdenv.mkDerivation {
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
./dont_create_privsep_path.patch
# Pull upstream zlib-1.3 support.
# The patch changes configure.ac, uses autoreconfHook.
(fetchpatch {
name = "zlib-1.3.patch";
url = "https://github.com/openssh/openssh-portable/commit/cb4ed12ffc332d1f72d054ed92655b5f1c38f621.patch";
hash = "sha256-3Gx0/I2n9/XaWCIefVYtvk5f+VgH6MlhMBse+PMyf34=";
})
] ++ extraPatches;
postPatch =
+2 -2
View File
@@ -5,11 +5,11 @@ in
{
openssh = common rec {
pname = "openssh";
version = "9.4p1";
version = "9.5p1";
src = fetchurl {
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
hash = "sha256-Ngj9kIjbIWPOs+YAyFq3nQ3j0iHlkZLqGSPiMmOGaoU=";
hash = "sha256-8Cbnt5un+1QPdRgq+W3IqPHbOV+SK7yfbKYDZyaGCGs=";
};
extraPatches = [ ./ssh-keysign-8.5.patch ];