The default configuration tries to build an intel+arm version on darwin-aarch64 which fails, but which we don't need. Remove the explicit architecture flags to fix the build.
···11 sha256 = "sha256-l7GUA+vlSECi/72eU3Y9COpGtLTRh3vYcHUi+uRkCn8=";
12 };
130000014 enableParallelBuilding = true;
1516 meta = with lib; {
···11 sha256 = "sha256-l7GUA+vlSECi/72eU3Y9COpGtLTRh3vYcHUi+uRkCn8=";
12 };
1314+ # remove the -arch flags which are set by default in the build
15+ configureFlags = lib.optionals stdenv.isDarwin [
16+ "--with-archflags=\"-mmacosx-version-min=10.14\""
17+ ];
18+19 enableParallelBuilding = true;
2021 meta = with lib; {