2021-09-30 22:12:47 +03:00
|
|
|
{ callPackage, lib, fetchurl, fetchpatch, fetchFromGitHub, autoreconfHook }:
|
2010-02-01 19:56:10 +03:00
|
|
|
let
|
2021-09-19 20:10:58 +03:00
|
|
|
common = opts: callPackage (import ./common.nix opts) { };
|
|
|
|
in
|
|
|
|
{
|
2009-10-01 16:07:33 +04:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
openssh = common rec {
|
|
|
|
pname = "openssh";
|
2021-09-26 19:47:00 +03:00
|
|
|
version = "8.8p1";
|
2016-01-02 03:35:43 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
|
2021-09-26 19:47:00 +03:00
|
|
|
sha256 = "1s8z6f7mi1pwsl79cqai8cr350m5lf2ifcxff57wx6mvm478k425";
|
2021-03-03 22:33:21 +03:00
|
|
|
};
|
2006-12-11 06:24:35 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
extraPatches = [ ./ssh-keysign-8.5.patch ];
|
2021-09-30 22:12:47 +03:00
|
|
|
extraMeta.maintainers = with lib.maintainers; [ das_j ];
|
2021-03-03 22:33:21 +03:00
|
|
|
};
|
2013-02-19 14:02:20 +04:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
openssh_hpn = common rec {
|
|
|
|
pname = "openssh-with-hpn";
|
2022-01-04 16:37:16 +03:00
|
|
|
version = "8.8p1";
|
2021-03-03 22:33:21 +03:00
|
|
|
extraDesc = " with high performance networking patches";
|
2016-07-16 11:08:29 +03:00
|
|
|
|
2022-01-04 16:37:16 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
|
|
|
|
sha256 = "1s8z6f7mi1pwsl79cqai8cr350m5lf2ifcxff57wx6mvm478k425";
|
2021-03-03 22:33:21 +03:00
|
|
|
};
|
2019-01-13 23:26:05 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
extraPatches = [
|
2022-01-04 16:37:16 +03:00
|
|
|
./ssh-keysign-8.5.patch
|
2020-11-19 11:15:23 +03:00
|
|
|
|
2022-01-04 16:37:16 +03:00
|
|
|
# HPN Patch from FreeBSD ports
|
|
|
|
(fetchpatch {
|
|
|
|
name = "ssh-hpn.patch";
|
|
|
|
url = "https://raw.githubusercontent.com/freebsd/freebsd-ports/a981593e/security/openssh-portable/files/extra-patch-hpn";
|
|
|
|
stripLen = 1;
|
|
|
|
sha256 = "sha256-+JvpPxktZAjhxLLK1lF4ijG9VlSWkqbRwotaLe6en64=";
|
|
|
|
})
|
2021-03-03 22:33:21 +03:00
|
|
|
];
|
2017-06-07 10:33:26 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
extraNativeBuildInputs = [ autoreconfHook ];
|
2021-03-11 13:57:14 +03:00
|
|
|
|
2022-01-04 16:37:16 +03:00
|
|
|
extraConfigureFlags = [ "--with-hpn" ];
|
|
|
|
extraMeta.maintainers = with lib.maintainers; [ abbe ];
|
2021-03-03 22:33:21 +03:00
|
|
|
};
|
2015-07-07 05:29:45 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
openssh_gssapi = common rec {
|
|
|
|
pname = "openssh-with-gssapi";
|
|
|
|
version = "8.4p1";
|
|
|
|
extraDesc = " with GSSAPI support";
|
2019-06-20 20:15:33 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
|
|
|
|
sha256 = "091b3pxdlj47scxx6kkf4agkx8c8sdacdxx8m1dw1cby80pd40as";
|
|
|
|
};
|
2014-11-20 14:12:33 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
extraPatches = [
|
|
|
|
./ssh-keysign-8.4.patch
|
2016-02-26 19:30:26 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
# See https://github.com/openssh/openssh-portable/pull/206
|
|
|
|
./ssh-copy-id-fix-eof.patch
|
2007-05-15 17:10:41 +04:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
(fetchpatch {
|
|
|
|
name = "openssh-gssapi.patch";
|
|
|
|
url = "https://salsa.debian.org/ssh-team/openssh/raw/debian/1%25${version}-2/debian/patches/gssapi.patch";
|
|
|
|
sha256 = "1z1ckzimlkm1dmr9f5fqjnjg28gsqcwx6xka0klak857548d2lp2";
|
|
|
|
})
|
|
|
|
];
|
2010-02-01 19:56:10 +03:00
|
|
|
|
2021-03-03 22:33:21 +03:00
|
|
|
extraNativeBuildInputs = [ autoreconfHook ];
|
2021-03-11 13:57:14 +03:00
|
|
|
|
|
|
|
extraMeta.knownVulnerabilities = [
|
|
|
|
"CVE-2021-28041"
|
2021-10-03 16:05:35 +03:00
|
|
|
"CVE-2021-41617"
|
2021-03-11 13:57:14 +03:00
|
|
|
];
|
2010-02-01 19:56:10 +03:00
|
|
|
};
|
2004-08-02 15:55:31 +04:00
|
|
|
}
|