2021-09-30 19:12:47 +00:00
|
|
|
{ callPackage, lib, fetchurl, fetchpatch, fetchFromGitHub, autoreconfHook }:
|
2010-02-01 16:56:10 +00:00
|
|
|
let
|
2021-09-19 17:10:58 +00:00
|
|
|
common = opts: callPackage (import ./common.nix opts) { };
|
|
|
|
in
|
|
|
|
{
|
2009-10-01 12:07:33 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
openssh = common rec {
|
|
|
|
pname = "openssh";
|
2023-03-16 16:35:51 +00:00
|
|
|
version = "9.3p1";
|
2016-01-02 00:35:43 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
|
2023-03-16 16:35:51 +00:00
|
|
|
hash = "sha256-6bq6dwGnalHz2Fpiw4OjydzZf6kAuFm8fbEUwYaK+Kg=";
|
2021-03-03 19:33:21 +00:00
|
|
|
};
|
2006-12-11 03:24:35 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraPatches = [ ./ssh-keysign-8.5.patch ];
|
2021-09-30 19:12:47 +00:00
|
|
|
extraMeta.maintainers = with lib.maintainers; [ das_j ];
|
2021-03-03 19:33:21 +00:00
|
|
|
};
|
2013-02-19 10:02:20 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
openssh_hpn = common rec {
|
|
|
|
pname = "openssh-with-hpn";
|
2023-02-18 11:24:44 +00:00
|
|
|
version = "9.2p1";
|
2021-03-03 19:33:21 +00:00
|
|
|
extraDesc = " with high performance networking patches";
|
2016-07-16 08:08:29 +00:00
|
|
|
|
2022-01-04 13:37:16 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
|
2023-02-18 11:24:44 +00:00
|
|
|
hash = "sha256-P2bb8WVftF9Q4cVtpiqwEhjCKIB7ITONY068351xz0Y=";
|
2021-03-03 19:33:21 +00:00
|
|
|
};
|
2019-01-13 20:26:05 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraPatches = [
|
2022-01-04 13:37:16 +00:00
|
|
|
./ssh-keysign-8.5.patch
|
2020-11-19 08:15:23 +00:00
|
|
|
|
2022-01-04 13:37:16 +00:00
|
|
|
# HPN Patch from FreeBSD ports
|
|
|
|
(fetchpatch {
|
2023-02-18 11:24:44 +00:00
|
|
|
name = "ssh-hpn-wo-channels.patch";
|
|
|
|
url = "https://raw.githubusercontent.com/freebsd/freebsd-ports/10491773d88012fe81d9c039cbbba647bde9ebc9/security/openssh-portable/files/extra-patch-hpn";
|
2022-01-04 13:37:16 +00:00
|
|
|
stripLen = 1;
|
2023-02-18 11:24:44 +00:00
|
|
|
excludes = [ "channels.c" ];
|
|
|
|
sha256 = "sha256-kSj0oE7gNHfIciy0/ErhdfrbmfjQmd8hduyiRXFnVZA=";
|
2022-01-04 13:37:16 +00:00
|
|
|
})
|
2023-02-02 15:18:12 +00:00
|
|
|
|
|
|
|
(fetchpatch {
|
2023-02-18 11:24:44 +00:00
|
|
|
name = "ssh-hpn-channels.patch";
|
|
|
|
url = "https://raw.githubusercontent.com/freebsd/freebsd-ports/10491773d88012fe81d9c039cbbba647bde9ebc9/security/openssh-portable/files/extra-patch-hpn";
|
|
|
|
extraPrefix = "";
|
|
|
|
includes = [ "channels.c" ];
|
|
|
|
sha256 = "sha256-pDLUbjv5XIyByEbiRAXC3WMUPKmn15af1stVmcvr7fE=";
|
2023-02-02 15:18:12 +00:00
|
|
|
})
|
2021-03-03 19:33:21 +00:00
|
|
|
];
|
2017-06-07 07:33:26 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraNativeBuildInputs = [ autoreconfHook ];
|
2021-03-11 10:57:14 +00:00
|
|
|
|
2022-01-04 13:37:16 +00:00
|
|
|
extraConfigureFlags = [ "--with-hpn" ];
|
2023-03-21 08:22:28 +00:00
|
|
|
extraMeta = {
|
|
|
|
maintainers = with lib.maintainers; [ abbe ];
|
|
|
|
knownVulnerabilities = [ "CVE-2023-28531" ];
|
|
|
|
};
|
2021-03-03 19:33:21 +00:00
|
|
|
};
|
2015-07-07 02:29:45 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
openssh_gssapi = common rec {
|
|
|
|
pname = "openssh-with-gssapi";
|
2022-07-06 09:34:30 +00:00
|
|
|
version = "9.0p1";
|
2021-03-03 19:33:21 +00:00
|
|
|
extraDesc = " with GSSAPI support";
|
2019-06-20 17:15:33 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
|
2022-07-06 09:34:30 +00:00
|
|
|
sha256 = "12m2f9czvgmi7akp7xah6y7mrrpi280a3ksk47iwr7hy2q1475q3";
|
2021-03-03 19:33:21 +00:00
|
|
|
};
|
2014-11-20 11:12:33 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraPatches = [
|
2022-07-06 09:34:30 +00:00
|
|
|
./ssh-keysign-8.5.patch
|
2007-05-15 13:10:41 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "openssh-gssapi.patch";
|
2022-07-06 09:34:30 +00:00
|
|
|
url = "https://salsa.debian.org/ssh-team/openssh/raw/debian/1%25${version}-1/debian/patches/gssapi.patch";
|
|
|
|
sha256 = "sha256-VG7+2dfu09nvHWuSAB6sLGMmjRCDCysl/9FR1WSF21k=";
|
2021-03-03 19:33:21 +00:00
|
|
|
})
|
|
|
|
];
|
2010-02-01 16:56:10 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraNativeBuildInputs = [ autoreconfHook ];
|
2023-03-21 08:22:28 +00:00
|
|
|
extraMeta.knownVulnerabilities = [ "CVE-2023-28531" ];
|
2010-02-01 16:56:10 +00:00
|
|
|
};
|
2004-08-02 11:55:31 +00:00
|
|
|
}
|