From b5786561fd453b61b13223e41b71726976416282 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Fri, 12 Dec 2025 11:16:22 -0800 Subject: [PATCH] Add make and CMAKE_MAKE_PROGRAM for material-color-utilities build --- modules/python-environment.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/python-environment.nix b/modules/python-environment.nix index 1d6d483..2c95ae5 100644 --- a/modules/python-environment.nix +++ b/modules/python-environment.nix @@ -55,8 +55,9 @@ let source "$VENV_PATH/bin/activate" # Add build tools to PATH for building Python packages - export PATH="${pkgs.cmake}/bin:${pkgs.pkg-config}/bin:${pkgs.gcc}/bin:$PATH" + export PATH="${pkgs.cmake}/bin:${pkgs.pkg-config}/bin:${pkgs.gcc}/bin:${pkgs.gnumake}/bin:$PATH" export CMAKE_GENERATOR="Unix Makefiles" + export CMAKE_MAKE_PROGRAM="${pkgs.gnumake}/bin/make" export CC="${pkgs.gcc}/bin/gcc" export CXX="${pkgs.gcc}/bin/g++"