Add make and CMAKE_MAKE_PROGRAM for material-color-utilities build

This commit is contained in:
Celes Renata
2025-12-12 11:16:22 -08:00
parent d6601acfab
commit b5786561fd
+2 -1
View File
@@ -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++"