tribuchet: building on jamie Running phase: unpackPhase unpacking source archive /nix/store/0d0dm14bnmny0gv4z3i8yp3r8zhillsv-source source root is source Running phase: patchPhase Executing configureCargoCommonVars decompressing cargo artifacts from /nix/store/5jghcyr2ypd4cvkmrapp38rqvfg2b98a-flakelet-relay-deps-0.1.0/target.tar.zst to target Running phase: updateAutotoolsGnuConfigScriptsPhase Running phase: configurePhase will append /build/source/.cargo-home/config.toml with contents of /nix/store/1k3vxv1jmzl64miswmvcqni1y6q5q72z-vendor-cargo-deps/config.toml default configurePhase, nothing to do Running phase: buildPhase +++ command cargo --version cargo 1.97.0 (c980f4866 2026-06-30) +++ command cargo build --release --message-format json-render-diagnostics --locked Compiling flakelet-relay v0.1.0 (/build/source) error[E0061]: this function takes 1 argument but 2 arguments were supplied --> src/agent/conn.rs:41:17 | 41 | let _ = sd_notify::notify(false, &[sd_notify::NotifyState::Status(&s)]); | ^^^^^^^^^^^^^^^^^ ----- unexpected argument #1 of type `bool` | note: function defined here --> /nix/store/1k3vxv1jmzl64miswmvcqni1y6q5q72z-vendor-cargo-deps/c19b7c6f923b580ac259164a89f2577984ad5ab09ee9d583b888f934adbbe8d0/sd-notify-0.5.0/src/lib.rs:178:8 | 178 | pub fn notify(state: &[NotifyState]) -> io::Result<()> { | ^^^^^^ help: remove the extra argument | 41 - let _ = sd_notify::notify(false, &[sd_notify::NotifyState::Status(&s)]); 41 + let _ = sd_notify::notify(&[sd_notify::NotifyState::Status(&s)]); | For more information about this error, try `rustc --explain E0061`. error: could not compile `flakelet-relay` (lib) due to 1 previous error