From f60fc7f61f6dc0a1b4631e3c5f913d53d7863293 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 30 Sep 2020 10:28:58 -0400 Subject: [PATCH] meson: Remove propagated native C compiler Now that we have a Meson release containting [1], Meson will work fine without a native compiler, so we don't need this trick anymore. Fixes #58831 [1]: https://github.com/mesonbuild/meson/pull/6512 --- pkgs/development/tools/build-managers/meson/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/tools/build-managers/meson/default.nix b/pkgs/development/tools/build-managers/meson/default.nix index aa11ba7638b..91d61811358 100644 --- a/pkgs/development/tools/build-managers/meson/default.nix +++ b/pkgs/development/tools/build-managers/meson/default.nix @@ -3,7 +3,6 @@ , stdenv , writeTextDir , substituteAll -, pkgsHostHost , fetchpatch }: @@ -63,10 +62,6 @@ python3.pkgs.buildPythonApplication rec { setupHook = ./setup-hook.sh; - # Ensure there will always be a native C compiler when meson is used, as a - # workaround until https://github.com/mesonbuild/meson/pull/6512 lands. - depsHostHostPropagated = [ pkgsHostHost.stdenv.cc ]; - # 0.45 update enabled tests but they are failing doCheck = false; # checkInputs = [ ninja pkgconfig ];