From 3caa6f4d7d431e4c26d84c69b50624533206db21 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Wed, 18 Feb 2015 01:19:59 -0500 Subject: [PATCH] This doesn't hurt the current darwin stdenv and doesn't affect anything else, but is needed for the upcoming pure darwin stdenv --- pkgs/tools/networking/openssh/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 10990829b0af..68b1aab2d89e 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -46,6 +46,7 @@ stdenv.mkDerivation rec { ${if pam != null then "--with-pam" else "--without-pam"} ${optionalString (etcDir != null) "--sysconfdir=${etcDir}"} ${optionalString withKerberos "--with-kerberos5=${kerberos}"} + ${optionalString stdenv.isDarwin "--disable-libutil"} ''; preConfigure =