tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openssh: 9.4p1 -> 9.5p1
Janne Heß
2 years ago
2d99e37a
1486c62d
+2
-10
2 changed files
expand all
collapse all
unified
split
pkgs
tools
networking
openssh
common.nix
default.nix
-8
pkgs/tools/networking/openssh/common.nix
···
45
45
46
46
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
47
47
./dont_create_privsep_path.patch
48
48
-
49
49
-
# Pull upstream zlib-1.3 support.
50
50
-
# The patch changes configure.ac, uses autoreconfHook.
51
51
-
(fetchpatch {
52
52
-
name = "zlib-1.3.patch";
53
53
-
url = "https://github.com/openssh/openssh-portable/commit/cb4ed12ffc332d1f72d054ed92655b5f1c38f621.patch";
54
54
-
hash = "sha256-3Gx0/I2n9/XaWCIefVYtvk5f+VgH6MlhMBse+PMyf34=";
55
55
-
})
56
48
] ++ extraPatches;
57
49
58
50
postPatch =
+2
-2
pkgs/tools/networking/openssh/default.nix
···
5
5
{
6
6
openssh = common rec {
7
7
pname = "openssh";
8
8
-
version = "9.4p1";
8
8
+
version = "9.5p1";
9
9
10
10
src = fetchurl {
11
11
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
12
12
-
hash = "sha256-Ngj9kIjbIWPOs+YAyFq3nQ3j0iHlkZLqGSPiMmOGaoU=";
12
12
+
hash = "sha256-8Cbnt5un+1QPdRgq+W3IqPHbOV+SK7yfbKYDZyaGCGs=";
13
13
};
14
14
15
15
extraPatches = [ ./ssh-keysign-8.5.patch ];