From c0660c4c00e03a57a0817ec27a542621bfbab018 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 24 Sep 2018 09:44:30 -0500 Subject: [PATCH] cyrus-sasl: set to null on non-musl per reviewer suggestion Unclear what the problem is exactly regarding regenerating files, so this makes the change only impact build configs known to need it. --- pkgs/development/libraries/cyrus-sasl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/cyrus-sasl/default.nix b/pkgs/development/libraries/cyrus-sasl/default.nix index 619c0801e96..bc5e23581ff 100644 --- a/pkgs/development/libraries/cyrus-sasl/default.nix +++ b/pkgs/development/libraries/cyrus-sasl/default.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { # Avoid triggering regenerating using broken autoconf/libtool bits. # (many distributions carry patches to remove/replace, but this works for now) - dontUpdateAutotoolsGnuConfigScripts = true; + dontUpdateAutotoolsGnuConfigScripts = if stdenv.hostPlatform.isMusl then true else null; installFlags = lib.optional stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ];