xin/overlays/openssh.nix

15 lines
366 B
Nix
Raw Normal View History

let
openssh = self: super: {
openssh = super.openssh.overrideAttrs (old: rec {
version = "9.2p1";
src = super.fetchurl {
url = "mirror://openbsd/OpenSSH/portable/openssh-${version}.tar.gz";
hash = "sha256-P2bb8WVftF9Q4cVtpiqwEhjCKIB7ITONY068351xz0Y=";
};
2023-02-15 07:02:00 -07:00
patches = [ ./ssh-keysign-8.5.patch ];
});
};
in openssh