From 60769ce1733aa7926e4b1a4fde53925b4a5b42a3 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Sat, 4 Jan 2025 03:34:49 +0000 Subject: [PATCH] openssh: Enable BSD auth on OpenBSD --- pkgs/tools/networking/openssh/common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/networking/openssh/common.nix b/pkgs/tools/networking/openssh/common.nix index 30d7ed4444b5..631c6175012c 100644 --- a/pkgs/tools/networking/openssh/common.nix +++ b/pkgs/tools/networking/openssh/common.nix @@ -122,6 +122,7 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optional stdenv.hostPlatform.isDarwin "--disable-libutil" ++ lib.optional (!linkOpenssl) "--without-openssl" ++ lib.optional withLdns "--with-ldns" + ++ lib.optional stdenv.hostPlatform.isOpenBSD "--with-bsd-auth" ++ extraConfigureFlags; ${if stdenv.hostPlatform.isStatic then "NIX_LDFLAGS" else null} =