2023-02-02 09:47:29 -07:00
|
|
|
let
|
2023-03-22 10:35:46 -06:00
|
|
|
openssh = _: super: {
|
|
|
|
openssh = super.openssh.overrideAttrs (_: rec {
|
2023-03-16 09:12:19 -06:00
|
|
|
version = "9.3p1";
|
2023-02-02 09:47:29 -07:00
|
|
|
src = super.fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
|
2023-03-16 09:12:19 -06:00
|
|
|
hash = "sha256-6bq6dwGnalHz2Fpiw4OjydzZf6kAuFm8fbEUwYaK+Kg=";
|
2023-02-02 09:47:29 -07:00
|
|
|
};
|
2023-02-15 07:02:00 -07:00
|
|
|
|
2023-02-15 08:59:27 -07:00
|
|
|
patches = [
|
|
|
|
./ssh-keysign-8.5.patch
|
|
|
|
./dont_create_privsep_path.patch
|
|
|
|
./locale_archive.patch
|
|
|
|
];
|
2023-02-02 09:47:29 -07:00
|
|
|
});
|
|
|
|
};
|
2023-07-11 09:12:50 -06:00
|
|
|
in
|
|
|
|
openssh
|