2021-03-03 19:33:21 +00:00
|
|
|
{ callPackage, fetchurl, fetchpatch, autoreconfHook }:
|
2010-02-01 16:56:10 +00:00
|
|
|
let
|
2021-03-03 19:33:21 +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";
|
2021-04-19 06:33:03 +00:00
|
|
|
version = "8.6p1";
|
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";
|
2021-04-19 06:33:03 +00:00
|
|
|
sha256 = "1bnpivgk98h2f9afpp88jv6g9ps83vnpxd031n2jqxi12vdf9rn3";
|
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 ];
|
|
|
|
};
|
2013-02-19 10:02:20 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
openssh_hpn = common rec {
|
|
|
|
pname = "openssh-with-hpn";
|
|
|
|
version = "8.4p1";
|
|
|
|
extraDesc = " with high performance networking patches";
|
2016-07-16 08:08:29 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/rapier1/openssh-portable/archive/hpn-KitchenSink-${builtins.replaceStrings [ "." "p" ] [ "_" "_P" ] version}.tar.gz";
|
|
|
|
sha256 = "1x2afjy1isslbg7qlvhhs4zhj2c8q2h1ljz0fc5b4h9pqcm9j540";
|
|
|
|
};
|
2019-01-13 20:26:05 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraPatches = [
|
|
|
|
./ssh-keysign-8.4.patch
|
2020-11-19 08:15:23 +00:00
|
|
|
|
|
|
|
# See https://github.com/openssh/openssh-portable/pull/206
|
|
|
|
./ssh-copy-id-fix-eof.patch
|
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
|
|
|
|
|
|
|
extraMeta.knownVulnerabilities = [
|
|
|
|
"CVE-2021-28041"
|
|
|
|
];
|
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";
|
|
|
|
version = "8.4p1";
|
|
|
|
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";
|
|
|
|
sha256 = "091b3pxdlj47scxx6kkf4agkx8c8sdacdxx8m1dw1cby80pd40as";
|
|
|
|
};
|
2014-11-20 11:12:33 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraPatches = [
|
|
|
|
./ssh-keysign-8.4.patch
|
2016-02-26 16:30:26 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
# See https://github.com/openssh/openssh-portable/pull/206
|
|
|
|
./ssh-copy-id-fix-eof.patch
|
2007-05-15 13:10:41 +00:00
|
|
|
|
2021-03-03 19:33:21 +00: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 16:56:10 +00:00
|
|
|
|
2021-03-03 19:33:21 +00:00
|
|
|
extraNativeBuildInputs = [ autoreconfHook ];
|
2021-03-11 10:57:14 +00:00
|
|
|
|
|
|
|
extraMeta.knownVulnerabilities = [
|
|
|
|
"CVE-2021-28041"
|
|
|
|
];
|
2010-02-01 16:56:10 +00:00
|
|
|
};
|
2004-08-02 11:55:31 +00:00
|
|
|
}
|