Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-02-20 00:36:40 +00:00
committed by GitHub
93 changed files with 2835 additions and 1177 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "00yld6yinc8s4xv3b8kbvzn2f4rja5dmp6ysv3n4847qn4k60dh7";
};
makeFlags = [ "CC=cc" ]; # gcc and/or clang compat
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; # gcc and/or clang compat
installPhase = ''
install -D -m ugo=rx connect $out/bin/connect
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildPhase = ''
make CC=cc posix
make CC=${stdenv.cc.targetPrefix}cc posix
'';
installPhase = ''
+1 -1
View File
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
"USE_GETADDRINFO=1"
] ++ lib.optionals withPrometheusExporter [
"EXTRA_OBJS=contrib/prometheus-exporter/service-prometheus.o"
] ++ lib.optional stdenv.isDarwin "CC=cc";
] ++ [ "CC=${stdenv.cc.targetPrefix}cc" ];
enableParallelBuilding = true;