fix(nix): correct cargoBuildFlags package name zesdex-backend -> zesdex-gateway

The gateway crate's package name is zesdex-gateway (not zesdex-backend);
the stale -p flag caused  to fail in CI with
'package ID specification zesdex-backend did not match any packages'.
This unblocks the GHA-only deploy workflow.
This commit is contained in:
mytheclipsebotreview
2026-08-20 18:44:21 +07:00
parent d1929f2fd4
commit 2de5b57133
+1 -1
View File
@@ -42,7 +42,7 @@
}; };
# Build only the main binary # Build only the main binary
cargoBuildFlags = [ "-p" "zesdex-backend" "--bin" "zesdex" ]; cargoBuildFlags = [ "-p" "zesdex-gateway" "--bin" "zesdex" ];
nativeBuildInputs = with pkgs; [ pkg-config ]; nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl sqlite ]; buildInputs = with pkgs; [ openssl sqlite ];