From b62e26236606723590b28b5cfc5318596a57f56a Mon Sep 17 00:00:00 2001 From: Randy Eckenrode Date: Wed, 28 Aug 2024 23:09:46 -0400 Subject: [PATCH] python27: drop configd configd is an alias for the SystemConfiguration framework, which is now always part of the SDK. Removing this parameter because it effectively does nothing now, which could be misleading to users. --- pkgs/development/interpreters/python/cpython/2.7/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/python/cpython/2.7/default.nix b/pkgs/development/interpreters/python/cpython/2.7/default.nix index abb66b38e3cc..a938918ead3a 100644 --- a/pkgs/development/interpreters/python/cpython/2.7/default.nix +++ b/pkgs/development/interpreters/python/cpython/2.7/default.nix @@ -11,7 +11,7 @@ , tcl ? null, tk ? null, tix ? null, libX11 ? null, x11Support ? false , zlib , self -, configd, coreutils +, coreutils , autoreconfHook , python-setup-hook # Some proprietary libs assume UCS2 unicode, especially on darwin :( @@ -239,8 +239,7 @@ let buildInputs = lib.optional (stdenv ? cc && stdenv.cc.libc != null) stdenv.cc.libc ++ [ bzip2 openssl zlib libffi expat db gdbm ncurses sqlite readline ] - ++ lib.optionals x11Support [ tcl tk libX11 ] - ++ lib.optional (stdenv.hostPlatform.isDarwin && configd != null) configd; + ++ lib.optionals x11Support [ tcl tk libX11 ]; nativeBuildInputs = [ autoreconfHook ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform)