summaryrefslogtreecommitdiff
path: root/openssh.nix
blob: cd0b216e01e303a2419e83b9284025b738786034 (plain)
1
2
3
4
5
6
7
8
{ inputs }:
self: super: {
  openssh =
    with super;
    (openssh.override { openssl = libressl; }).overrideAttrs (old: rec {
      doCheck = false;
    });
}