chore(deps): update nixpkgs pin

Nixpkgs has removed support for x86_64-darwin, so removing that from
CI's flake check.

A x86_64-darwin binary is still built via Stack.
This commit is contained in:
Wolfgang Walther
2026-08-02 14:51:50 +00:00
parent 57e8d20811
commit 42754cb6c9
7 changed files with 15 additions and 20 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ def run_pgproxy(env=None, proxy_timeout="1s"):
)
if process.poll() is not None:
(_, stderr_output) = process.communicate(timeout=1)
_, stderr_output = process.communicate(timeout=1)
raise RuntimeError(
f"{NGINX_BIN} exited with {process.returncode}: {stderr_output}"
)