openssh: 10.2p1 -> 10.3p1

This commit is contained in:
Morgan Jones
2026-04-05 21:09:56 -07:00
parent 7a7834c478
commit 625b040143
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -71,7 +71,8 @@ stdenv.mkDerivation (finalAttrs: {
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
./dont_create_privsep_path.patch
]
++ lib.optionals (lib.versionOlder finalAttrs.version "10.3") [
# See discussion in https://github.com/NixOS/nixpkgs/issues/466049 and
# https://gitlab.archlinux.org/archlinux/packaging/packages/openssh/-/issues/23
(fetchpatch {
+2 -2
View File
@@ -14,11 +14,11 @@ in
{
openssh = common rec {
pname = "openssh";
version = "10.2p1";
version = "10.3p1";
src = fetchurl {
url = urlFor version;
hash = "sha256-zMQsBBmTeVkmP6Hb0W2vwYxWuYTANWLSk3zlamD3mLI=";
hash = "sha256-VmgqNruS3PS08Bb9jsjnQFm3mo3iXBXWcNcx59GORfQ=";
};
extraPatches = [