rad:z27Mx16VDZt2nwGygkyPCbK9ppuB radicle-devcontainer-ci1ae5499b802980697239e3a4bc57de6dc753ecdbdid:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C)main{
"request": "trigger",
"version": 1,
"event_type": "push",
"repository": {
"id": "rad:z27Mx16VDZt2nwGygkyPCbK9ppuB",
"name": "radicle-devcontainer-ci",
"description": "Radicle CI broker adapter that runs jobs in a repository's devcontainer",
"private": false,
"default_branch": "main",
"delegates": [
"did:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C"
]
},
"pusher": {
"id": "did:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C",
"alias": "nolan"
},
"before": "1ae5499b802980697239e3a4bc57de6dc753ecdb",
"after": "1ae5499b802980697239e3a4bc57de6dc753ecdb",
"branch": "main",
"commits": [
"1ae5499b802980697239e3a4bc57de6dc753ecdb"
]
}
$ rad clone rad:z27Mx16VDZt2nwGygkyPCbK9ppuB .
✓ Creating checkout in ./... ✓ Remote nolan@z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C added ✓ Remote-tracking branch nolan@z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C/main created for z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C ✓ Repository successfully cloned under /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w/ ╭─────────────────────────────────────────────────────────────────────────╮ │ radicle-devcontainer-ci │ │ Radicle CI broker adapter that runs jobs in a repository's devcontainer │ │ 0 issues · 0 patches │ ╰─────────────────────────────────────────────────────────────────────────╯ Run `cd ./.` to go to the repository directory.
$ git config advice.detachedHead false
$ git checkout 1ae5499b802980697239e3a4bc57de6dc753ecdb
HEAD is now at 1ae5499 feat: support injection of environment variables and secrets
$ chmod -R g+rX .
#!/usr/bin/env bash
set -xeuo pipefail
mise install
eval "$(mise activate bash --shims)"
cargo fmt --check
cargo clippy --all-targets
cargo test
# The Determinate installer's profile hook doesn't run in this non-login
# shell, and there is no nix daemon under --init none.
export PATH=/nix/var/nix/profiles/default/bin:$PATH
export NIX_REMOTE=local
nix fmt -- --ci
# Evaluates the NixOS module and its invariants. Must precede flake check:
# that command evaluates with a read-only store and fails on naersk's
# filtered sources ("path ... is not valid") until an ordinary eval has
# registered them.
nix eval --raw .#checks.x86_64-linux.nixos-module.drvPath
nix flake check --no-build
# Prove the module-rendered settings parse as the Rust Config: extract the
# 'ci' instance's config from the nixos-module check's JSON (valid YAML
# input, since YAML is a JSON superset) and run it through the adapter's
# own validator. Catches Nix<->Rust schema drift with no extra nix builds.
nix eval --raw .#checks.x86_64-linux.nixos-module.text --apply 'text: builtins.toJSON (builtins.fromJSON text).ci.config' > target/nixos-module-ci.yaml
cargo run -- --config target/nixos-module-ci.yaml config
# Full broker + adapter end-to-end test in NixOS VMs. Only worth running
# with hardware acceleration; hosts without /dev/kvm skip it (they cannot
# reach this point anyway while runArgs passes the device unconditionally).
if [ -e /dev/kvm ]; then
nix build -L .#checks.x86_64-linux.e2e
fi
mounting radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c at /workspaces/w/target mounting radicle-ci-cache-0f21906dcab9-8a344e2d4f47a30d at /nix
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman volume rm radicle-ci-cache-0f21906dcab9-57fdcb11b8922a0f
radicle-ci-cache-0f21906dcab9-57fdcb11b8922a0f
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman volume create --label xyz.radicle.ci.cache=rad:z27Mx16VDZt2nwGygkyPCbK9ppuB radicle-ci-cache-0f21906dcab9-8a344e2d4f47a30d
radicle-ci-cache-0f21906dcab9-8a344e2d4f47a30d
$ /nix/store/ik0xcys4cqjr4hdywzinrylm9sm48bvc-devcontainer-0.87.0/bin/devcontainer up --docker-path /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w --id-label xyz.radicle.ci.run=f6f40c2e-ce97-4b20-b27b-138ec238e43f --mount type=volume,source=radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c,target=/workspaces/w/target --mount type=volume,source=radicle-ci-cache-0f21906dcab9-8a344e2d4f47a30d,target=/nix
[2026-07-07T15:51:09.802Z] @devcontainers/cli 0.87.0. Node.js v24.16.0. linux 6.18.37 x64.
(node:2755539) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.
(Use `node --trace-deprecation ...` to show where the warning was created)
[2026-07-07T15:51:10.200Z] Resolving Feature dependencies for 'ghcr.io/devcontainers/features/rust:1'...
[2026-07-07T15:51:11.765Z] Resolving Feature dependencies for 'ghcr.io/devcontainers-extra/features/mise:1'...
[2026-07-07T15:51:12.510Z] Soft-dependency 'ghcr.io/devcontainers/features/common-utils' is not required. Removing from installation order...
[2026-07-07T15:51:12.510Z] Soft-dependency 'ghcr.io/devcontainers-extra/features/gh-release' is not required. Removing from installation order...
[2026-07-07T15:51:13.178Z] Files to omit: ''
[2026-07-07T15:51:13.750Z] Files to omit: ''
[2026-07-07T15:51:13.790Z] Start: Run: /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman buildx build --load --build-arg BUILDKIT_INLINE_CACHE=1 --build-context dev_containers_feature_content_source=/tmp/devcontainercli-radicle/container-features/0.87.0-1783439470195 --build-arg _DEV_CONTAINERS_BASE_IMAGE=debian:13 --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -f /tmp/devcontainercli-radicle/container-features/0.87.0-1783439470195/Dockerfile.extended -t vsc-w-0a0cfb9f088bea5b6be976e0642bf2c19f34db00a0cf5707f188ab62f4a0238d-features /tmp/devcontainercli-radicle/empty-folder
[2026-07-07T15:51:13.890Z] [1/2] STEP 1/4: FROM debian:13 AS dev_containers_feature_content_normalize
[2026-07-07T15:51:16.337Z] [1/2] STEP 2/4: USER root
[2026-07-07T15:51:16.340Z] --> Using cache 66603368ba0af0aad9e7659dc6bf66628388a3512261f9fcf4aecb484ea71283
--> 66603368ba0a
[2026-07-07T15:51:16.349Z] [1/2] STEP 3/4: COPY --from=dev_containers_feature_content_source devcontainer-features.builtin.env /tmp/build-features/
[2026-07-07T15:51:16.475Z] --> Using cache 450ba763ed74bd2163500474d232a4a5c52c74fdbb0aafa8c2c9383e37296556
--> 450ba763ed74
[2026-07-07T15:51:16.480Z] [1/2] STEP 4/4: RUN chmod -R 0755 /tmp/build-features/
[2026-07-07T15:51:16.480Z] --> Using cache fa697464e89584f4d3cacdfb6aa5dc186cf0dcfb4b9bd31307b62c099783afe1
--> fa697464e895
[2026-07-07T15:51:16.485Z] [2/2] STEP 1/13: FROM debian:13 AS dev_containers_target_stage
[2026-07-07T15:51:18.358Z] [2/2] STEP 2/13: USER root
[2026-07-07T15:51:18.359Z] --> Using cache 66603368ba0af0aad9e7659dc6bf66628388a3512261f9fcf4aecb484ea71283
--> 66603368ba0a
[2026-07-07T15:51:18.366Z] [2/2] STEP 3/13: RUN mkdir -p /tmp/dev-container-features
[2026-07-07T15:51:18.367Z] --> Using cache bafa148706fee6c949e424a3c61d893722f4e10f5b86f65551f5b2b970ea5d5d
--> bafa148706fe
[2026-07-07T15:51:18.377Z] [2/2] STEP 4/13: COPY --from=dev_containers_feature_content_normalize /tmp/build-features/ /tmp/dev-container-features
[2026-07-07T15:51:18.510Z] --> Using cache db84ec134af7f940977d484b0923488e94e31410ee0e492b5d896cb5876fe047
--> db84ec134af7
[2026-07-07T15:51:18.527Z] [2/2] STEP 5/13: RUN echo "_CONTAINER_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'root' || grep -E '^root|^[^:]*:[^:]*:root:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env && echo "_REMOTE_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'root' || grep -E '^root|^[^:]*:[^:]*:root:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env
[2026-07-07T15:51:18.531Z] --> Using cache 9624121ed1daaa154a4684fc2067caecc2c8474f79414cab012102caedb60827
--> 9624121ed1da
[2026-07-07T15:51:18.536Z] [2/2] STEP 6/13: RUN --mount=type=bind,from=dev_containers_feature_content_source,source=mise_0,target=/tmp/build-features-src/mise_0 cp -ar /tmp/build-features-src/mise_0 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/mise_0 && cd /tmp/dev-container-features/mise_0 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/mise_0
[2026-07-07T15:51:18.542Z] --> Using cache 6494a69032064ec7cf816993cf24ccd7aab27abc3c4062ca77ad3f2474625cbd
--> 6494a6903206
[2026-07-07T15:51:18.549Z] [2/2] STEP 7/13: ENV CARGO_HOME="/usr/local/cargo"
[2026-07-07T15:51:18.549Z] --> Using cache 453aa63748492e197c51b44ea58aed91297e883c4444ac678138a9dacdab9ef5
--> 453aa6374849
[2026-07-07T15:51:18.555Z] [2/2] STEP 8/13: ENV RUSTUP_HOME="/usr/local/rustup"
[2026-07-07T15:51:18.555Z] --> Using cache 8bd587404275f55bd1a75f012bd0c54016093b400c92bc62a5b407cf59d74267
[2026-07-07T15:51:18.555Z] --> 8bd587404275
[2026-07-07T15:51:18.560Z] [2/2] STEP 9/13: ENV PATH="/usr/local/cargo/bin:${PATH}"
[2026-07-07T15:51:18.561Z] --> Using cache abd0f6576b8a9e36cc64d5adfa26a8c257867fdb5fd6f3b8a8f59f0821e3df65
--> abd0f6576b8a
[2026-07-07T15:51:18.566Z] [2/2] STEP 10/13: RUN --mount=type=bind,from=dev_containers_feature_content_source,source=rust_1,target=/tmp/build-features-src/rust_1 cp -ar /tmp/build-features-src/rust_1 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/rust_1 && cd /tmp/dev-container-features/rust_1 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/rust_1
[2026-07-07T15:51:18.568Z] --> Using cache 4dc1aff3e936316e4d61519899caec26b7aa5fc0481d5de23ac973be9b675e6f
--> 4dc1aff3e936
[2026-07-07T15:51:18.572Z] [2/2] STEP 11/13: ARG _DEV_CONTAINERS_IMAGE_USER=root
[2026-07-07T15:51:18.573Z] --> Using cache e96a495c7b1ac9c3a9b725b59bd604e0fdb9b38711c43b0ce4a46979b96b8470
--> e96a495c7b1a
[2026-07-07T15:51:18.578Z] [2/2] STEP 12/13: USER $_DEV_CONTAINERS_IMAGE_USER
[2026-07-07T15:51:18.578Z] --> Using cache b4fe84370f55480c8f874879ea8ac20fc7f4e35b8df041f6cb442105ff3f0cc2
--> b4fe84370f55
[2026-07-07T15:51:18.583Z] [2/2] STEP 13/13: LABEL devcontainer.metadata="[ {\"id\":\"ghcr.io/devcontainers-extra/features/mise:1\"}, {\"id\":\"ghcr.io/devcontainers/features/rust:1\",\"capAdd\":[\"SYS_PTRACE\"],\"securityOpt\":[\"seccomp=unconfined\"],\"customizations\":{\"vscode\":{\"extensions\":[\"vadimcn.vscode-lldb\",\"rust-lang.rust-analyzer\",\"tamasfe.even-better-toml\"],\"settings\":{\"files.watcherExclude\":{\"**/target/**\":true},\"github.copilot.chat.codeGeneration.instructions\":[{\"text\":\"This dev container includes Rust, common Rust utilities, and needed dependencies pre-installed and available on the `PATH`, along with the Rust language extension for Rust development.\"}]}}}}, {\"postCreateCommand\":\"sh .devcontainer/post-create.sh\"} ]"
[2026-07-07T15:51:18.583Z] --> Using cache 1f141192719e6ebcc40a0c7fc97882ddc6c0ca968f76ac430cd4b0514bc1f2c9
[2/2] COMMIT vsc-w-0a0cfb9f088bea5b6be976e0642bf2c19f34db00a0cf5707f188ab62f4a0238d-features
[2026-07-07T15:51:18.606Z] --> 1f141192719e
[2026-07-07T15:51:18.606Z] [Warning] one or more build args were not consumed: [BUILDKIT_INLINE_CACHE _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE]
[2026-07-07T15:51:18.607Z] Successfully tagged localhost/vsc-w-0a0cfb9f088bea5b6be976e0642bf2c19f34db00a0cf5707f188ab62f4a0238d-features:latest
Successfully tagged localhost/vsc-w-24bf4bcd7fa2fba6913f6dfda80482bbd81df64d8026ff5e989a56ea667a5af7-features:latest
Successfully tagged localhost/vsc-w-19694b3639ed3d7a4c1ae588071c8947fe7547aad8aaf9cd3a60de487ec049d5-features:latest
[2026-07-07T15:51:18.607Z] Successfully tagged localhost/vsc-w-3dbf61905667b3ffd0fe70cb279479133b9777f0d5396b739a80f00d42a82e99-features:latest
Successfully tagged localhost/vsc-w-2184ab699f123f06eb77d125f333850bd2489eac0749b7383d3d6ea77d9aa9c4-features:latest
[2026-07-07T15:51:18.653Z] 1f141192719e6ebcc40a0c7fc97882ddc6c0ca968f76ac430cd4b0514bc1f2c9
[2026-07-07T15:51:18.664Z] Start: Run: /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman run --sig-proxy=false -a STDOUT -a STDERR --mount type=bind,source=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w,target=/workspaces/w --mount type=volume,src=radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c,dst=/workspaces/w/target --mount type=volume,src=radicle-ci-cache-0f21906dcab9-8a344e2d4f47a30d,dst=/nix -l devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w -l xyz.radicle.ci.run=f6f40c2e-ce97-4b20-b27b-138ec238e43f --security-opt label=disable --device=/dev/kvm --cap-add SYS_PTRACE --security-opt seccomp=unconfined --entrypoint /bin/sh vsc-w-0a0cfb9f088bea5b6be976e0642bf2c19f34db00a0cf5707f188ab62f4a0238d-features -c echo Container started
[2026-07-07T15:51:18.950Z] Container started
[2026-07-07T15:51:19.543Z] Running the postCreateCommand from devcontainer.json...
[2026-07-07T15:51:20.533Z] info: downloading the Determinate Nix Installer
[2026-07-07T15:51:23.399Z] INFO nix-installer v3.21.2
[2026-07-07T15:51:23.926Z] INFO Step: Create directory `/nix`
INFO Step: Install Determinate Nixd
[2026-07-07T15:51:23.965Z] INFO Step: Provision Nix
[2026-07-07T15:51:25.617Z] INFO Step: Create build users (UID 30001-30032) and group (GID 30000)
[2026-07-07T15:51:27.476Z] INFO Step: Configure Nix
[2026-07-07T15:51:28.144Z] INFO Step: Create directory `/etc/tmpfiles.d`
[2026-07-07T15:51:28.144Z] INFO Step: Configure the Determinate Nix daemon
INFO Step: Cleanup
[2026-07-07T15:51:28.148Z] INFO Running self test for shell sh
[2026-07-07T15:51:28.180Z] INFO Running self test for shell bash
[2026-07-07T15:51:28.205Z] WARN SelfTest([ShellFailed { shell: Sh, command: "\"sh\" \"-lc\" \"exec nix build --option substitute false --option post-build-hook '' --no-link --expr 'derivation { name = \\\"self-test-sh-1783439488148\\\"; system = \\\"x86_64-linux\\\"; builder = \\\"/bin/sh\\\"; args = [\\\"-c\\\" \\\"echo hello > \\\\$out\\\"]; }'\"", output: Output { status: ExitStatus(unix_wait_status(256)), stdout: "", stderr: "error: cannot connect to socket at '/nix/var/nix/daemon-socket/socket': No such file or directory\n" } }, ShellFailed { shell: Bash, command: "\"bash\" \"-lc\" \"exec nix build --option substitute false --option post-build-hook '' --no-link --expr 'derivation { name = \\\"self-test-bash-1783439488180\\\"; system = \\\"x86_64-linux\\\"; builder = \\\"/bin/sh\\\"; args = [\\\"-c\\\" \\\"echo hello > \\\\$out\\\"]; }'\"", output: Output { status: ExitStatus(unix_wait_status(256)), stdout: "", stderr: "error: cannot connect to socket at '/nix/var/nix/daemon-socket/socket': No such file or directory\n" } }])
[2026-07-07T15:51:28.223Z] Nix was installed successfully!
To get started using Nix, open a new shell or run `. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh`
{"outcome":"success","containerId":"7fb00abd00ad00835f981473639212c963f9d85b0e94e60ba0564e22a75c5c4d","remoteUser":"root","remoteWorkspaceFolder":"/workspaces/w"}
gave the workspace (owner uid 979) to the container user (uid 0) for the run
$ /nix/store/ik0xcys4cqjr4hdywzinrylm9sm48bvc-devcontainer-0.87.0/bin/devcontainer exec --docker-path /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w --id-label xyz.radicle.ci.run=f6f40c2e-ce97-4b20-b27b-138ec238e43f /bin/sh -c echo "radicle-ci-ownership uid=$(id -u) owner=$(stat -c %u .)"
radicle-ci-ownership uid=0 owner=979
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman exec --user 0 7fb00abd00ad00835f981473639212c963f9d85b0e94e60ba0564e22a75c5c4d chown -R 0 /workspaces/w
$ /nix/store/ik0xcys4cqjr4hdywzinrylm9sm48bvc-devcontainer-0.87.0/bin/devcontainer exec --docker-path /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f6f40c2e-ce97-4b20-b27b-138ec238e43f/w --id-label xyz.radicle.ci.run=f6f40c2e-ce97-4b20-b27b-138ec238e43f --remote-env RADICLE_CI_RUN_ID=f6f40c2e-ce97-4b20-b27b-138ec238e43f --remote-env RADICLE_CI_EVENT=push --remote-env RADICLE_CI_COMMIT=1ae5499b802980697239e3a4bc57de6dc753ecdb --remote-env RADICLE_CI_REPOSITORY=rad:z27Mx16VDZt2nwGygkyPCbK9ppuB --remote-env RADICLE_CI_AUTHOR=did:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C --remote-env RADICLE_CI_AUTHOR_ALIAS=nolan --remote-env RADICLE_CI_BRANCH=main /bin/sh -c script="$(mktemp)" && cat >"$script" && chmod +x "$script" && exec "$script"
+ mise install
mise cargo-release@1.1.2 [1/3] install
mise git-cliff@2.13.1 [1/3] install
mise cargo-release@1.1.2 [1/3] download cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz
mise cargo-release@1.1.2 [2/3] checksum cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz
mise cargo-release@1.1.2 [2/3] verify GitHub artifact attestations
mise cargo-release@1.1.2 [2/3] verify SLSA provenance
mise cargo-release@1.1.2 [3/3] extract cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz
mise cargo-release@1.1.2 ✓ installed
mise git-cliff@2.13.1 [1/3] download git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz
mise git-cliff@2.13.1 [2/3] checksum git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz
mise git-cliff@2.13.1 [3/3] extract git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz
mise git-cliff@2.13.1 ✓ installed
++ mise activate bash --shims
+ eval 'export PATH="/root/.local/share/mise/shims:$PATH"'
++ export PATH=/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
++ PATH=/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ cargo fmt --check
+ cargo clippy --all-targets
Updating crates.io index
Downloading crates ...
Downloaded aead v0.5.2
Downloaded anstyle-query v1.1.5
Downloaded askama_escape v0.10.3
Downloaded base45 v3.2.0
Downloaded doc-comment v0.3.4
Downloaded cypheraddr v0.4.1
Downloaded ct-codecs v1.1.7
Downloaded dunce v1.0.5
Downloaded filetime v0.2.29
Downloaded cyphergraphy v0.3.0
Downloaded darling_macro v0.20.11
Downloaded derive_builder_macro v0.20.2
Downloaded fnv v1.0.7
Downloaded cpufeatures v0.2.17
Downloaded data-encoding-macro-internal v0.1.18
Downloaded base-x v0.2.11
Downloaded crypto-common v0.1.7
Downloaded block-padding v0.3.3
Downloaded base32 v0.4.0
Downloaded ctrlc v3.5.2
Downloaded cvt v0.1.2
Downloaded errno v0.3.14
Downloaded diligent-date-parser v0.1.5
Downloaded adler2 v2.0.1
Downloaded fs2 v0.4.3
Downloaded clap_lex v1.1.0
Downloaded ff v0.13.1
Downloaded colorchoice v1.0.5
Downloaded fast-glob v0.3.3
Downloaded culpa v1.0.2
Downloaded data-encoding-macro v0.1.20
Downloaded cfg_aliases v0.2.1
Downloaded cfg-if v1.0.4
Downloaded git-ref-format v0.6.0
Downloaded base16ct v0.2.0
Downloaded block-buffer v0.10.4
Downloaded culpa-macros v1.0.2
Downloaded bcrypt-pbkdf v0.10.0
Downloaded git-ref-format-core v0.6.0
Downloaded generic-array v0.14.7
Downloaded dyn-clone v1.0.20
Downloaded descape v3.0.0
Downloaded anstyle v1.0.14
Downloaded arraydeque v0.5.1
Downloaded amplify_num v0.5.4
Downloaded askama_parser v0.2.1
Downloaded autocfg v1.5.1
Downloaded duration-str v0.21.0
Downloaded deranged v0.5.8
Downloaded anstream v1.0.0
Downloaded amplify_syn v2.0.1
Downloaded crossbeam-deque v0.8.6
Downloaded chacha20 v0.9.1
Downloaded erased-serde v0.4.10
Downloaded ed25519 v1.5.3
Downloaded base256emoji v1.0.2
Downloaded cbc v0.1.2
Downloaded git-ref-format-macro v0.6.0
Downloaded cipher v0.4.4
Downloaded displaydoc v0.2.6
Downloaded bytesize v2.4.0
Downloaded askama_derive v0.12.5
Downloaded blowfish v0.9.1
Downloaded const-str v0.4.3
Downloaded ecdsa v0.16.9
Downloaded keccak v0.1.6
Downloaded is_terminal_polyfill v1.70.2
Downloaded equivalent v1.0.2
Downloaded ec25519 v0.1.0
Downloaded ctr v0.9.2
Downloaded ghash v0.5.1
Downloaded potential_utf v0.1.5
Downloaded ascii v1.1.0
Downloaded line-col v0.2.1
Downloaded ident_case v1.0.1
Downloaded fastrand v2.4.1
Downloaded digest v0.10.7
Downloaded amplify_derive v4.0.1
Downloaded globwalk v0.9.1
Downloaded ahash v0.8.12
Downloaded askama v0.12.1
Downloaded anyhow v1.0.103
Downloaded idna_adapter v1.2.2
Downloaded derive_builder_core v0.20.2
Downloaded anstyle-parse v1.0.0
Downloaded pkcs8 v0.10.2
Downloaded pulldown-cmark-escape v0.11.0
Downloaded crossbeam-epoch v0.9.18
Downloaded pkg-config v0.3.33
Downloaded derive_builder v0.20.2
Downloaded byteorder v1.5.0
Downloaded percent-encoding v2.3.2
Downloaded crossbeam-utils v0.8.21
Downloaded data-encoding v2.11.0
Downloaded darling v0.20.11
Downloaded crc32fast v1.5.0
Downloaded powerfmt v0.2.0
Downloaded polyval v0.6.2
Downloaded atom_syndication v0.12.8
Downloaded proc-macro-error2 v2.0.1
Downloaded arrayvec v0.7.7
Downloaded clap_derive v4.6.1
Downloaded radicle-dag v0.10.0
Downloaded qcheck v1.0.0
Downloaded poly1305 v0.8.0
Downloaded bitflags v2.13.0
Downloaded clap v4.6.1
Downloaded radicle-git-metadata v0.1.0
Downloaded mime v0.3.17
Downloaded radicle-git-ref-format v0.1.0
Downloaded quote v1.0.46
Downloaded darling_core v0.20.11
Downloaded base64 v0.22.1
Downloaded radicle-cob v0.19.0
Downloaded radicle-ssh v0.10.0
Downloaded base64 v0.21.7
Downloaded rand_chacha v0.3.1
Downloaded aes v0.8.4
Downloaded ref-cast v1.0.25
Downloaded radicle-std-ext v0.2.0
Downloaded der v0.7.10
Downloaded rand_core v0.6.4
Downloaded nonempty v0.9.0
Downloaded humansize v2.1.3
Downloaded radicle-localtime v0.1.0
Downloaded radicle-oid v0.1.0
Downloaded matchers v0.2.0
Downloaded crossbeam-channel v0.5.15
Downloaded cyphernet v0.5.3
Downloaded inout v0.1.4
Downloaded aes-gcm v0.10.3
Downloaded radicle-crypto v0.16.0
Downloaded radicle-core v0.2.0
Downloaded html-page v0.5.0
Downloaded rfc6979 v0.4.0
Downloaded remove_dir_all v1.0.0
Downloaded match-lookup v0.1.2
Downloaded roadmap v0.7.0
Downloaded proc-macro2 v1.0.106
Downloaded clap_builder v4.6.0
Downloaded crypto-bigint v0.5.5
Downloaded heck v0.5.0
Downloaded cc v1.2.65
Downloaded num-iter v0.1.45
Downloaded nonempty v0.11.0
Downloaded getopts v0.2.24
Downloaded basic-toml v0.1.10
Downloaded pulldown-cmark v0.13.4
Downloaded aho-corasick v1.1.4
Downloaded deunicode v1.6.2
Downloaded elliptic-curve v0.13.8
Downloaded base64ct v1.8.3
Downloaded amplify v4.9.0
Downloaded primeorder v0.13.6
Downloaded ppv-lite86 v0.2.21
Downloaded nonempty v0.12.0
Downloaded const-oid v0.9.6
Downloaded same-file v1.0.6
Downloaded radicle-surf v0.27.1
Downloaded foldhash v0.1.5
Downloaded opaque-debug v0.3.1
Downloaded schemars_derive v1.2.1
Downloaded quick-xml v0.39.4
Downloaded serde_spanned v0.6.9
Downloaded rss v2.0.13
Downloaded serde_path_to_error v0.1.20
Downloaded pear_codegen v0.2.9
Downloaded serde_derive_internals v0.29.1
Downloaded form_urlencoded v1.2.2
Downloaded ryu v1.0.23
Downloaded serde v1.0.228
Downloaded serde_norway v0.9.42
Downloaded sha2 v0.10.9
Downloaded signature v2.2.0
Downloaded siphasher v1.0.3
Downloaded simd-adler32 v0.3.9
Downloaded serde_yaml v0.9.34+deprecated
Downloaded radicle-git-metadata v0.2.0
Downloaded rust_decimal v1.42.1
Downloaded spin v0.9.8
Downloaded subplotlib-derive v0.14.0
Downloaded slug v0.1.6
Downloaded sqlite3-sys v0.18.0
Downloaded state v0.6.0
Downloaded shlex v2.0.1
Downloaded itoa v1.0.18
Downloaded hashlink v0.10.0
Downloaded hashlink v0.9.1
Downloaded group v0.13.0
Downloaded globset v0.4.18
Downloaded regex-syntax v0.8.11
Downloaded synstructure v0.13.2
Downloaded num-integer v0.1.46
Downloaded nu-ansi-term v0.50.3
Downloaded terminal_size v0.4.4
Downloaded tempfile v3.27.0
Downloaded tar v0.4.46
Downloaded subplot v0.14.0
Downloaded thread_local v1.1.9
Downloaded thiserror v2.0.18
Downloaded shell-words v1.1.1
Downloaded getrandom v0.2.17
Downloaded find-msvc-tools v0.1.9
Downloaded pem-rfc7468 v0.7.0
Downloaded multibase v0.9.3
Downloaded marked-yaml v0.7.2
Downloaded serde_json v1.0.150
Downloaded time-core v0.1.9
Downloaded textwrap v0.16.2
Downloaded thiserror v1.0.69
Downloaded rustix v1.1.4
Downloaded thiserror-impl v1.0.69
Downloaded toml_write v0.1.2
Downloaded tracing-serde v0.2.0
Downloaded tracing-attributes v0.1.31
Downloaded toml_edit v0.22.27
Downloaded syn v1.0.109
Downloaded syn v2.0.118
Downloaded tracing-core v0.1.36
Downloaded unicode-linebreak v0.1.5
Downloaded unicase v2.9.0
Downloaded universal-hash v0.5.1
Downloaded pest_generator v2.8.6
Downloaded tracing-subscriber v0.3.23
Downloaded sha3 v0.10.9
Downloaded utf8parse v0.2.2
Downloaded url v2.5.8
Downloaded uuid v1.23.4
Downloaded yoke v0.8.3
Downloaded yaml-rust2 v0.10.4
Downloaded yoke-derive v0.8.2
Downloaded zerovec-derive v0.11.3
Downloaded pkcs1 v0.7.5
Downloaded radicle-job v0.5.2
Downloaded zerovec v0.11.6
Downloaded zmij v1.0.21
Downloaded getrandom v0.4.3
Downloaded zerotrie v0.2.4
Downloaded p256 v0.13.2
Downloaded version_check v0.9.5
Downloaded icu_provider v2.2.0
Downloaded icu_properties v2.2.0
Downloaded tracing-log v0.2.0
Downloaded smallvec v1.15.2
Downloaded spki v0.7.3
Downloaded yaml-rust2 v0.9.0
Downloaded zerofrom-derive v0.1.7
Downloaded icu_normalizer_data v2.2.0
Downloaded sharded-slab v0.1.7
Downloaded log v0.4.33
Downloaded ignore v0.4.27
Downloaded serde_derive v1.0.228
Downloaded pest_meta v2.8.6
Downloaded icu_locale_core v2.2.0
Downloaded figment v0.10.19
Downloaded zerofrom v0.1.8
Downloaded writeable v0.6.3
Downloaded walkdir v2.5.0
Downloaded thiserror-impl v2.0.18
Downloaded pikchr v0.1.4
Downloaded num-traits v0.2.19
Downloaded sqlite v0.37.0
Downloaded xattr v1.6.1
Downloaded winnow v0.7.15
Downloaded unicode-width v0.2.2
Downloaded pest_derive v2.8.6
Downloaded flate2 v1.1.9
Downloaded icu_collections v2.2.0
Downloaded encoding_rs v0.8.35
Downloaded zeroize v1.9.0
Downloaded memchr v2.8.2
Downloaded nom v7.1.3
Downloaded yansi v1.0.1
Downloaded indexmap v2.14.0
Downloaded rand v0.8.6
Downloaded miniz_oxide v0.8.9
Downloaded minimal-lexical v0.2.1
Downloaded pest v2.8.6
Downloaded hashbrown v0.15.5
Downloaded unicode-normalization v0.1.25
Downloaded regex v1.12.4
Downloaded libm v0.2.16
Downloaded p384 v0.13.1
Downloaded icu_properties_data v2.2.0
Downloaded hashbrown v0.17.1
Downloaded git2 v0.20.4
Downloaded vcpkg v0.2.15
Downloaded p521 v0.13.3
Downloaded num-bigint-dig v0.8.6
Downloaded zerocopy v0.8.52
Downloaded nix v0.31.3
Downloaded nix v0.29.0
Downloaded idna v1.1.0
Downloaded hashbrown v0.14.5
Downloaded icu_normalizer v2.2.0
Downloaded utf8_iter v1.0.4
Downloaded utf8-width v0.1.8
Downloaded unsafe-libyaml-norway v0.2.15
Downloaded unsafe-libyaml v0.2.11
Downloaded unicode-segmentation v1.13.3
Downloaded tracing v0.1.44
Downloaded hmac v0.12.1
Downloaded once_cell v1.21.4
Downloaded litemap v0.8.2
Downloaded typenum v1.20.1
Downloaded normpath v1.5.1
Downloaded unicode-ident v1.0.24
Downloaded uncased v0.9.10
Downloaded ucd-trie v0.1.7
Downloaded typeid v1.0.3
Downloaded pin-project-lite v0.2.17
Downloaded fs_at v0.2.1
Downloaded time v0.3.53
Downloaded subtle v2.6.1
Downloaded stable_deref_trait v1.2.1
Downloaded radicle-ci-broker v0.29.0
Downloaded marked-yaml v0.8.0
Downloaded toml v0.8.23
Downloaded libc v0.2.186
Downloaded tinyvec v1.11.0
Downloaded libz-sys v1.1.29
Downloaded toml_datetime v0.6.11
Downloaded tinyvec_macros v0.1.1
Downloaded tinystr v0.8.3
Downloaded time-macros v0.2.31
Downloaded regex-automata v0.4.14
Downloaded tera v1.20.1
Downloaded mime_guess v2.0.5
Downloaded subplotlib v0.14.0
Downloaded ssh-key v0.6.7
Downloaded pear v0.2.9
Downloaded pbkdf2 v0.12.2
Downloaded jobserver v0.1.34
Downloaded inlinable_string v0.1.15
Downloaded html-escape v0.2.13
Downloaded strsim v0.11.1
Downloaded ssh-encoding v0.2.0
Downloaded ssh-cipher v0.2.0
Downloaded socks5-client v0.4.3
Downloaded smawk v0.3.3
Downloaded ref-cast-impl v1.0.25
Downloaded radicle-git-ext v0.12.0
Downloaded proc-macro2-diagnostics v0.10.1
Downloaded proc-macro-error-attr2 v2.0.0
Downloaded signature v1.6.4
Downloaded radicle v0.22.1
Downloaded bstr v1.12.3
Downloaded serde_core v1.0.228
Downloaded schemars v1.2.1
Downloaded rsa v0.9.10
Downloaded num-conv v0.2.2
Downloaded lazy_static v1.5.0
Downloaded serde-untagged v0.1.9
Downloaded sec1 v0.7.3
Downloaded chrono v0.4.45
Downloaded libgit2-sys v0.18.5+1.9.4
Downloaded sqlite3-src v0.7.0
Downloaded linux-raw-sys v0.12.1
Checking radicle-devcontainer-ci v0.1.0 (/workspaces/w)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 10.00s
+ cargo test
Compiling radicle-devcontainer-ci v0.1.0 (/workspaces/w)
Finished `test` profile [unoptimized + debuginfo] target(s) in 1.79s
Running unittests src/lib.rs (target/debug/deps/radicle_devcontainer_ci-a8eda4544dfb7c54)
running 74 tests
test config::tests::adapter_config_defaults_runtime_to_auto_detection ... ok
test config::tests::adapter_config_rejects_unknown_fields ... ok
test config::tests::cache_entries_parse_from_toml_and_yaml ... ok
test config::tests::bare_runtime_path_is_probed_on_search_path ... ok
test cache::tests::inputs_escaping_the_checkout_are_rejected ... ok
test config::tests::render_script_builds_shebang_from_shell ... ok
test config::tests::native_fallback_rejects_unknown_keys ... ok
test config::tests::discover_falls_back_to_native_yaml ... ok
test config::tests::parse_accepts_json_and_leaves_the_filesystem_alone ... ok
test cache::tests::entry_without_inputs_caches_unconditionally ... ok
test cache::tests::missing_input_is_an_error_naming_the_file ... ok
test config::tests::discover_prefers_primary_yaml ... ok
test cache::tests::paths_resolve_against_the_workspace_folder ... ok
test config::tests::discover_without_any_config_names_the_candidates ... ok
test config::tests::discover_rejects_ambiguous_config ... ok
test cache::tests::unsafe_cache_paths_are_rejected ... ok
test config::tests::explicit_runtime_must_exist_on_search_path ... ok
test config::tests::runtime_path_bypasses_detection ... ok
test cache::tests::key_follows_input_contents_and_target ... ok
test config::tests::unknown_keys_are_rejected ... ok
test config::tests::yaml_config_applies_defaults ... ok
test config::tests::toml_config_accepts_hyphenated_and_snake_case_init_script ... ok
test config::tests::discover_reads_toml ... ok
test config::tests::missing_runtime_path_fails_up_front ... ok
test devcontainer::tests::env_preamble_frames_present_values_and_skips_absent ... ok
test devcontainer::tests::env_preamble_rejects_what_the_framing_cannot_carry ... ok
test config::tests::runtime_auto_detection_prefers_docker ... ok
test devcontainer::tests::exec_stdin_wrapper_exports_preamble_before_the_script ... ok
test devcontainer::tests::parse_ownership_probe_finds_the_marker_line ... ok
test devcontainer::tests::parse_up_result_finds_the_json_result_line ... ok
test devcontainer::tests::missing_devcontainer_config_is_job_failure ... ok
test config::tests::runtime_detection_skips_clients_that_cannot_reach_a_daemon ... ok
test devcontainer::tests::missing_cache_input_is_a_job_failure ... ok
test cleanup::tests::missing_state_dir_is_not_an_error ... ok
test cleanup::tests::sweeps_stale_state_dirs_only ... ok
test devcontainer::tests::missing_alias_is_left_unset ... ok
test devcontainer::tests::empty_branch_is_left_unset ... ok
test devcontainer::tests::failing_script_is_job_failure_but_still_tears_down ... ok
test devcontainer::tests::garbled_ownership_probe_runs_unaligned ... ok
test devcontainer::tests::every_run_forces_its_own_compose_project ... ok
test devcontainer::tests::forwarded_env_rides_stdin_not_the_command_line ... ok
test devcontainer::tests::push_trigger_exports_branch_metadata ... ok
test devcontainer::tests::patch_trigger_exports_patch_metadata ... ok
test devcontainer::tests::patch_author_is_the_new_tips_revision_author ... ok
test local::tests::missing_devcontainer_config_is_a_job_failure ... ok
test devcontainer::tests::failing_script_still_restores_the_workspace_owner ... ok
test devcontainer::tests::mismatched_workspace_owner_is_aligned_and_restored ... ok
test script::tests::prepare_script_writes_executable_script_and_records_step ... ok
test script::tests::missing_config_is_reported_not_fatal ... ok
test state::tests::atomic_write_mode_overrides_umask ... ok
test state::tests::atomic_writes_replace_contents_without_residue ... ok
test script::tests::supplied_config_overrides_discovery ... ok
test state::tests::dropping_an_unreaped_command_kills_its_group ... ok
test cleanup::tests::dry_run_reports_without_removing ... ok
test devcontainer::tests::up_failure_skips_exec_and_still_tears_down ... ok
test devcontainer::tests::cache_volumes_are_created_labeled_and_mounted ... ok
test state::tests::run_records_steps_and_renders_html ... ok
test state::tests::spawn_rides_out_a_write_descriptor_pinning_the_script ... ok
test local::tests::local_run_is_a_clean_room_with_captured_output ... ok
test local::tests::explicit_state_dir_is_kept ... ok
test local::tests::failing_script_is_a_failure_with_its_output_captured ... ok
test local::tests::local_source_owner_is_never_probed_or_rewritten ... ok
test local::tests::repo_config_override_skips_discovery ... ok
test devcontainer::tests::successful_run_execs_script_and_tears_down ... ok
test devcontainer::tests::tag_trigger_exports_tag_not_branch ... ok
test local::tests::hung_devcontainer_command_times_out_as_a_job_failure ... ok
test state::tests::deadline_kills_hung_command_and_records_timeout ... ok
test devcontainer::tests::compose_teardown_sweeps_project_containers_networks_and_volumes ... ok
test devcontainer::tests::wedged_runtime_cannot_hang_teardown ... ok
test local::tests::local_runs_cache_keyed_by_the_source_path ... ok
test cleanup::tests::compose_leftovers_swept_only_when_project_dead ... ok
test cleanup::tests::removes_only_stale_ci_owned_containers ... ok
test devcontainer::tests::stuck_up_is_released_by_a_start_event_nudge ... ok
test devcontainer::tests::existing_cache_volumes_are_reused_and_stale_ones_pruned ... ok
test result: ok. 74 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.78s
Running unittests src/main.rs (target/debug/deps/radicle_devcontainer_ci-f3736e98887305a0)
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
Running tests/adapter_stdout.rs (target/debug/deps/adapter_stdout-4f5307e9f0c5f136)
running 9 tests
test config_subcommand_rejects_schema_drift ... ok
test config_subcommand_validates_module_rendered_settings ... ok
test adapter_emits_exactly_two_protocol_lines ... ok
test keep_state_preserves_the_run_directory ... ok
test failed_checkout_is_a_job_failure_recorded_in_the_report ... ok
test interrupt_kills_container_commands_and_tears_down ... ok
test successful_run_emits_triggered_then_finished_success ... ok
test tag_trigger_builds_like_a_push ... ok
test patch_trigger_exports_patch_metadata ... ok
test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.06s
Running tests/protocol_wire.rs (target/debug/deps/protocol_wire-a940e77ceab74b05)
running 5 tests
test finished_responses_match_documented_lines ... ok
test triggered_response_round_trips ... ok
test tag_trigger_round_trips ... ok
test push_trigger_round_trips ... ok
test patch_trigger_round_trips ... ok
test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
Doc-tests radicle_devcontainer_ci
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
+ export PATH=/nix/var/nix/profiles/default/bin:/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ PATH=/nix/var/nix/profiles/default/bin:/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ export NIX_REMOTE=local
+ NIX_REMOTE=local
+ nix fmt -- --ci
unpacking 'github:hercules-ci/flake-parts/17c9d6cdfc60c64f4ee8d306f9bc0b4ccb51481e?narHash=sha256-vp6Y/Grm98ESt6ceOkWiHWyZRDV3J1RID4w%2B6NWK9yA%3D' into the Git cache...
unpacking 'github:nix-community/nixpkgs.lib/db3f255737b94216eb71cce308e2912cf6bc2d7c?narHash=sha256-ePjCwr1sNm9NYUqywL7QfK3JnlS015msC%2BeBu2zKlp8%3D' into the Git cache...
copying path '/nix/store/wlk9a5827bc2pdqisypjkgcv5j72xia8-source' from 'https://cache.nixos.org'...
these 33 paths will be fetched (25.8 MiB download, 86.1 MiB unpacked):
/nix/store/k6p4kfg37jksiaqkapx0vllh92z7r7id-brotli-1.2.0-lib
/nix/store/8gyg3xn9i8xdz42yhbl0d3vmmz8phcs0-bzip2-1.0.8
/nix/store/5ji5924yd02lmva6bmp7k65gfs2696z7-curl-8.20.0
/nix/store/a8phd5lf9wrzgz9mrsg4y3rp7si1yakz-elfutils-0.194
/nix/store/hngmi01i8wgi25a0byrxcn4ysz5j79mw-gcc-15.2.0-lib
/nix/store/7nww4d4yl7jzf66qllvyn61xb21vp7ry-gcc-15.2.0-libgcc
/nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67
/nix/store/0zc8py7pvw9wbfyym6204ddam722w7rj-gmp-with-cxx-6.3.0
/nix/store/d8jrr4rj6827s0d5b9baqxrsyafqk6zd-iana-etc-20251215
/nix/store/dlkag0m5p7b6d6nbhh091hq0s60q6vks-json-c-0.18
/nix/store/c985nba7m9vjl11i39wwhdpxnkxhlz1f-keyutils-1.6.3-lib
/nix/store/kj73fnsp8vd3pr54j1i2acw94nzi63vw-krb5-1.22.2-lib
/nix/store/chc8cxmnqxgnf4i0y89m292wm6290qsy-libffi-3.5.2
/nix/store/zlvydh6q1rv1jza79b21yhi07ic0dkkg-libidn2-2.3.8
/nix/store/009gwlbgzg0ybil10v0q56gpgyvsi3wr-libpsl-0.21.5
/nix/store/d9c9w2y52gffj7zz1b76j0f8fbp5ww4d-libssh2-1.11.1
/nix/store/ipz4lbivx3q7gr79130d6g5ix35vibnw-libunistring-1.4.2
/nix/store/xakkd7mhg6dindq35ji8smr4j9ypwpn7-mailcap-2.1.54
/nix/store/w73y27sld7x920ffnipw3a8xd1agchdl-nghttp2-1.69.0-lib
/nix/store/ql42q1jvff4a97fv669lfnvcq6arz0pa-nghttp3-1.15.0
/nix/store/j92gvvi4ixkm332fk97mvnq7mary758f-ngtcp2-1.22.1
/nix/store/mhi45zliliv6qhvhb8g5sycy3jpv47rf-nixfmt-1.3.1
/nix/store/1vyi947ndhs0m44rrpb1p2mcfs4x737r-nixfmt-tree-2.5.0
/nix/store/g87r0ymgwasv3m4m4n6yplaclnll9zfn-numactl-2.0.18
/nix/store/l0vl4dali2mvbpi30a8da1f71jl85myg-openssl-3.6.2
/nix/store/qjxwvydl5f07l8zgg6p2pyypll8ybc9n-publicsuffix-list-0-unstable-2026-05-13
/nix/store/ar8f09x79hi0waq3m7xw4k4czd5s9590-treefmt-2.5.0
/nix/store/g4wamhqlkv6amh4h2f6151qgni95bxjl-treefmt.toml
/nix/store/ga3b95jkyvknam1nxl25r95nyk87ix25-tzdata-2026b
/nix/store/aasbksznz37vw5pb26wq86209q5cmza8-xgcc-15.2.0-libgcc
/nix/store/bbk5ss80g5rgnwgn9b8br4l29km8plh9-xz-5.8.3
/nix/store/dbz6pb9g67kpgpl95k8d85kzpxm1c32p-zlib-1.3.2
/nix/store/fsvb5zrsm1n7m5wshm570imspffi7i8f-zstd-1.5.7
copying path '/nix/store/g4wamhqlkv6amh4h2f6151qgni95bxjl-treefmt.toml' from 'https://cache.nixos.org'...
copying path '/nix/store/7nww4d4yl7jzf66qllvyn61xb21vp7ry-gcc-15.2.0-libgcc' from 'https://cache.nixos.org'...
copying path '/nix/store/d8jrr4rj6827s0d5b9baqxrsyafqk6zd-iana-etc-20251215' from 'https://cache.nixos.org'...
copying path '/nix/store/xakkd7mhg6dindq35ji8smr4j9ypwpn7-mailcap-2.1.54' from 'https://cache.nixos.org'...
copying path '/nix/store/ga3b95jkyvknam1nxl25r95nyk87ix25-tzdata-2026b' from 'https://cache.nixos.org'...
copying path '/nix/store/aasbksznz37vw5pb26wq86209q5cmza8-xgcc-15.2.0-libgcc' from 'https://cache.nixos.org'...
copying path '/nix/store/ipz4lbivx3q7gr79130d6g5ix35vibnw-libunistring-1.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/qjxwvydl5f07l8zgg6p2pyypll8ybc9n-publicsuffix-list-0-unstable-2026-05-13' from 'https://cache.nixos.org'...
copying path '/nix/store/zlvydh6q1rv1jza79b21yhi07ic0dkkg-libidn2-2.3.8' from 'https://cache.nixos.org'...
copying path '/nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67' from 'https://cache.nixos.org'...
copying path '/nix/store/k6p4kfg37jksiaqkapx0vllh92z7r7id-brotli-1.2.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/8gyg3xn9i8xdz42yhbl0d3vmmz8phcs0-bzip2-1.0.8' from 'https://cache.nixos.org'...
copying path '/nix/store/c985nba7m9vjl11i39wwhdpxnkxhlz1f-keyutils-1.6.3-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/dlkag0m5p7b6d6nbhh091hq0s60q6vks-json-c-0.18' from 'https://cache.nixos.org'...
copying path '/nix/store/chc8cxmnqxgnf4i0y89m292wm6290qsy-libffi-3.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/hngmi01i8wgi25a0byrxcn4ysz5j79mw-gcc-15.2.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/w73y27sld7x920ffnipw3a8xd1agchdl-nghttp2-1.69.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/ql42q1jvff4a97fv669lfnvcq6arz0pa-nghttp3-1.15.0' from 'https://cache.nixos.org'...
copying path '/nix/store/l0vl4dali2mvbpi30a8da1f71jl85myg-openssl-3.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/ar8f09x79hi0waq3m7xw4k4czd5s9590-treefmt-2.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/009gwlbgzg0ybil10v0q56gpgyvsi3wr-libpsl-0.21.5' from 'https://cache.nixos.org'...
copying path '/nix/store/bbk5ss80g5rgnwgn9b8br4l29km8plh9-xz-5.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/dbz6pb9g67kpgpl95k8d85kzpxm1c32p-zlib-1.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/kj73fnsp8vd3pr54j1i2acw94nzi63vw-krb5-1.22.2-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/d9c9w2y52gffj7zz1b76j0f8fbp5ww4d-libssh2-1.11.1' from 'https://cache.nixos.org'...
copying path '/nix/store/j92gvvi4ixkm332fk97mvnq7mary758f-ngtcp2-1.22.1' from 'https://cache.nixos.org'...
copying path '/nix/store/0zc8py7pvw9wbfyym6204ddam722w7rj-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/g87r0ymgwasv3m4m4n6yplaclnll9zfn-numactl-2.0.18' from 'https://cache.nixos.org'...
copying path '/nix/store/fsvb5zrsm1n7m5wshm570imspffi7i8f-zstd-1.5.7' from 'https://cache.nixos.org'...
copying path '/nix/store/5ji5924yd02lmva6bmp7k65gfs2696z7-curl-8.20.0' from 'https://cache.nixos.org'...
copying path '/nix/store/a8phd5lf9wrzgz9mrsg4y3rp7si1yakz-elfutils-0.194' from 'https://cache.nixos.org'...
copying path '/nix/store/mhi45zliliv6qhvhb8g5sycy3jpv47rf-nixfmt-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/1vyi947ndhs0m44rrpb1p2mcfs4x737r-nixfmt-tree-2.5.0' from 'https://cache.nixos.org'...
traversed 28 files
emitted 1 files for processing
formatted 1 files (0 changed) in 137ms
+ nix eval --raw .#checks.x86_64-linux.nixos-module.drvPath
unpacking 'github:nix-community/naersk/9aa07bb0256d300219b30622d2454e85f7f3667e?narHash=sha256-thLTFbp9D5Qknmh8q/v4FRpLGphUSijT3E86cbLYTXo%3D' into the Git cache...
/nix/store/b66lnc4v2ip058bngpnx8wgpxdpls90a-broker-adapter-settings.json.drv+ nix flake check --no-build
evaluating 'apps'...
evaluating 'checks'...
evaluating 'apps'...
evaluating 'checks'...
evaluating 'devShells'...
evaluating 'formatter'...
evaluating 'formatter'...
evaluating 'legacyPackages'...
evaluating 'devShells'...
evaluating 'nixosConfigurations'...
evaluating 'legacyPackages'...
evaluating 'nixosModules'...
evaluating 'nixosConfigurations'...
evaluating 'nixosModules'...
evaluating 'overlays'...
evaluating 'packages'...
evaluating 'overlays'...
evaluating 'packages'...
evaluating 'devShells.aarch64-darwin'...
evaluating 'nixosModules.default'...
evaluating 'devShells.x86_64-darwin'...
evaluating 'devShells.aarch64-linux'...
evaluating 'nixosModules.devcontainer-adapter'...
evaluating 'devShells.x86_64-linux'...
evaluating 'legacyPackages.aarch64-linux'...
evaluating 'legacyPackages.x86_64-linux'...
evaluating 'legacyPackages.x86_64-darwin'...
evaluating 'legacyPackages.aarch64-darwin'...
evaluating 'checks.aarch64-linux'...
evaluating 'checks.x86_64-linux'...
evaluating 'checks.x86_64-darwin'...
evaluating 'checks.aarch64-darwin'...
running flake check 'nixosModules.default.isFunctionOrAttrs'...
✅ nixosModules.default
evaluating 'apps.aarch64-darwin'...
evaluating 'apps.x86_64-darwin'...
evaluating 'apps.aarch64-linux'...
evaluating 'apps.x86_64-linux'...
running flake check 'nixosModules.devcontainer-adapter.isFunctionOrAttrs'...
evaluating 'packages.aarch64-darwin'...
evaluating 'packages.aarch64-linux'...
evaluating 'packages.x86_64-darwin'...
evaluating 'packages.x86_64-linux'...
✅ nixosModules.devcontainer-adapter
evaluating 'packages.x86_64-linux.default'...
evaluating 'devShells.x86_64-linux.default'...
evaluating 'formatter.x86_64-linux'...
evaluating 'formatter.aarch64-linux'...
evaluating 'formatter.x86_64-darwin'...
evaluating 'formatter.aarch64-darwin'...
evaluating 'checks.x86_64-linux.clippy'...
evaluating 'checks.x86_64-linux.e2e'...
evaluating 'checks.x86_64-linux.fmt'...
evaluating 'checks.x86_64-linux.nixos-module'...
evaluating 'checks.x86_64-linux.test'...
✅ devShells.x86_64-linux.default (build skipped)
✅ formatter.x86_64-linux (build skipped)
✅ packages.x86_64-linux.default (build skipped)
✅ checks.x86_64-linux.test
✅ checks.x86_64-linux.fmt
✅ checks.x86_64-linux.clippy
✅ checks.x86_64-linux.nixos-module
✅ checks.x86_64-linux.e2e
warning: The check omitted these incompatible systems: aarch64-darwin, aarch64-linux, x86_64-darwin
Use '--all-systems' to check all.
+ nix eval --raw .#checks.x86_64-linux.nixos-module.text --apply 'text: builtins.toJSON (builtins.fromJSON text).ci.config'
+ cargo run -- --config target/nixos-module-ci.yaml config
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.12s
Running `target/debug/radicle-devcontainer-ci --config target/nixos-module-ci.yaml config`
warning: configured runtime_path /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman is not an executable file
state: /var/lib/radicle-ci/adapters/devcontainer/ci/state
reports: /var/lib/radicle-ci/adapters/devcontainer/ci/reports
base_url: https://ci.example.org/reports
log_file: /var/log/radicle-ci/adapters/devcontainer/ci.log
runtime: podman
runtime_path: /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman
devcontainer_cli: /nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer
timeout_seconds: 3300
keep_state: false
forward_env:
- CARGO_REGISTRY_TOKEN
+ '[' -e /dev/kvm ']'
+ nix build -L .#checks.x86_64-linux.e2e
these 826 derivations will be built:
/nix/store/0014f4a0ynyh5wwcl5j6r954l014hw4h-unpack-crypto-bigint-0.5.5.drv
/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv
/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv
/nix/store/02hsz45w4qkhsr5qys7sw7azpmz46ddr-unpack-spin-0.9.8.drv
/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv
/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv
/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv
/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv
/nix/store/89s12vh5408zfbgl82xnqpkm50ivkq9l-download-ahash-0.8.12.drv
/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv
/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv
/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv
/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv
/nix/store/0hld73wlpc0sns559v39b2krbmzw66qk-unpack-num-traits-0.2.19.drv
/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv
/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv
/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv
/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv
/nix/store/0q0n2sjzagv4riq3w9j5hy1m96zw4zy9-users-groups.json.drv
/nix/store/998msxnwwvvhgdj349jq5d4yg0wzf1gf-dbus-1.drv
/nix/store/xbfvjlqi5srdv8wkgj1jqbj0m259vxz2-X-Restart-Triggers-dbus-broker.drv
/nix/store/0r3z5xax1g0q9cga8x1mwbycp3qsa4iz-unit-dbus-broker.service.drv
/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv
/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv
/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv
/nix/store/1239164gs75cka8l1z0n6chjfri24s9l-unpack-group-0.13.0.drv
/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv
/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv
/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv
/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv
/nix/store/bb87ax43lczsbp44vf931s8l75dcb107-download-askama_derive-0.12.5.drv
/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv
/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv
/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv
/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv
/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv
/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv
/nix/store/19f9sz5pxnx83wjzfi6s6crhp4ndbrvp-download-aead-0.5.2.drv
/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv
/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv
/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv
/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv
/nix/store/y2358b2dxwi49v3yzkjncfki5q1y035c-download-bitflags-2.13.0.drv
/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv
/nix/store/1i6qj5chm7d0nr9wc79fx7axwk0bvmdg-unpack-ppv-lite86-0.2.21.drv
/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv
/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv
/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv
/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv
/nix/store/1qivyzl3pw7hmqyyxhmakz83rqpiahf5-radicle-e2e-fixture-config.json.drv
/nix/store/mkrgjg4bw658adkqczwlc67x0wx9gc3p-download-anstyle-query-1.1.5.drv
/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv
/nix/store/1ra7c6ysyqgrb4a886h82m1cs8zcvdr2-download-amplify_derive-4.0.1.drv
/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv
/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv
/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv
/nix/store/2bd98lfnbkbcy3z8zi7cvgv8cfzv31ky-unit-dbus-broker.service.drv
/nix/store/q4q5nbycd8mp818khh4wparpcw7cdwlk-system-units.drv
/nix/store/byf36mzz5hkgp91yj1iax4gs5gggpzvd-etc.drv
/nix/store/h3zxd7hkg807y40glv0s2ia23kasgp6r-activate.drv
/nix/store/1x91zd3v01syqkny2lmi0g2lhralrw95-nixos-system-alice-test.drv
/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv
/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv
/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv
/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv
/nix/store/52lpzir84c286ij8vfc94magygk3h81y-download-block-padding-0.3.3.drv
/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv
/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv
/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv
/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv
/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv
/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv
/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv
/nix/store/2jrzswpzsw2c69zzr8v78iqdsi1c8yz4-download-anstyle-1.0.14.drv
/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv
/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv
/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv
/nix/store/6mvak7w01m7ar1z4z72zsdpyhw9fqbkb-download-amplify-4.9.0.drv
/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv
/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv
/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv
/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv
/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv
/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv
/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv
/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv
/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv
/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv
/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv
/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv
/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv
/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv
/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv
/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv
/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv
/nix/store/30lh1ynbsmljw7bx7mqg0rp2a9gsrzb4-unpack-mime_guess-2.0.5.drv
/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv
/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv
/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv
/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv
/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv
/nix/store/394fsw15fjzdvdcq85b4vd4lb36gh28h-download-base256emoji-1.0.2.drv
/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv
/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv
/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv
/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv
/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv
/nix/store/3diwz7i9i08v0hb4yd71q4m0bgmbk2c3-unpack-hmac-0.12.1.drv
/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv
/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv
/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv
/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv
/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv
/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv
/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv
/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv
/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv
/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv
/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv
/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv
/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv
/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv
/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv
/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv
/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv
/nix/store/7hkggqrf5rlx3imczga6cayn630jvsym-git-dependencies.drv
/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv
/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv
/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv
/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv
/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv
/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv
/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv
/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv
/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv
/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv
/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv
/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv
/nix/store/4ja8b1nhn1wv729mdlf4aih276w3z0i7-unpack-winapi-x86_64-pc-windows-gnu-0.4.0.drv
/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv
/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv
/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv
/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv
/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv
/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv
/nix/store/4q5fqv8j146wp8hi2vmh6x88frgxcap6-unpack-thiserror-1.0.69.drv
/nix/store/4wr36835pkajz49vgamn8f1w7c8m1vs0-unpack-windows_x86_64_gnu-0.48.5.drv
/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv
/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv
/nix/store/fgk6cbf6xii9zpn1wgw08k42xjpdxmpm-download-aes-gcm-0.10.3.drv
/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv
/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv
/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv
/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv
/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv
/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv
/nix/store/5gvg7kvjz0y20y3ihccv7s7q7q5cjdvz-unpack-pkcs8-0.10.2.drv
/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv
/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv
/nix/store/akqxa5j2w5sxivfa8s134pvwb01shy08-download-anstyle-parse-1.0.0.drv
/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv
/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv
/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv
/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv
/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv
/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv
/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv
/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv
/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv
/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv
/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv
/nix/store/5rqb7a133a47ms9chba7fv4z2n2knqh8-unpack-strsim-0.11.1.drv
/nix/store/5xs4ww1i7lmxm9ap4n766xim7vwfbh33-unpack-rfc6979-0.4.0.drv
/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv
/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv
/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv
/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv
/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv
/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv
/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv
/nix/store/66mirq68zsi8570zlakk0xqwy9272iiw-unpack-windows_x86_64_gnullvm-0.48.5.drv
/nix/store/j2iqcjs4g1n480f5bhfxg03jdpzqnhdz-download-base45-3.2.0.drv
/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv
/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv
/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv
/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv
/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv
/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv
/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv
/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv
/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv
/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv
/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv
/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv
/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv
/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv
/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv
/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv
/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv
/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv
/nix/store/9azq2ymks4zawpysl0r3rh1x8757c271-download-base32-0.4.0.drv
/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv
/nix/store/765raplzaz7m7sh3rvaqb6jdf4mxjpmh-unpack-block-buffer-0.10.4.drv
/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv
/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv
/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv
/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv
/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv
/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv
/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv
/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv
/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv
/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv
/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv
/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv
/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv
/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv
/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv
/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv
/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv
/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv
/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv
/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv
/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv
/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv
/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv
/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv
/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv
/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv
/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv
/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv
/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv
/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv
/nix/store/js9vhdnjzy5m9rarjd7kkh73zmdypqd0-download-adler2-2.0.1.drv
/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv
/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv
/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv
/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv
/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv
/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv
/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv
/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv
/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv
/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv
/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv
/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv
/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv
/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv
/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv
/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv
/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv
/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv
/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv
/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv
/nix/store/90k9szv11zlqk2kyrrm2hn7kwf0hwkwx-unpack-windows-targets-0.48.5.drv
/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv
/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv
/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv
/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv
/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv
/nix/store/97f3dy0n9qdwndybbq1nfdfhdsdcbvim-unpack-windows-0.48.0.drv
/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv
/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv
/nix/store/9i5kbrnxpdjjxb94lk1jmslq1f5yvrip-unpack-windows-result-0.2.0.drv
/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv
/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv
/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv
/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv
/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv
/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv
/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv
/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv
/nix/store/acakgc765dbs08wbv5vqbp3kz9a8m6yb-unpack-num-iter-0.1.45.drv
/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv
/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv
/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv
/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv
/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv
/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv
/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv
/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv
/nix/store/ay9vrhzaa4byhjb2wahljahhdy0pmy33-unpack-heck-0.5.0.drv
/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv
/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv
/nix/store/b05cmnv1gh28pbdkwqnfi2glngciw92c-unpack-windows_i686_gnullvm-0.52.6.drv
/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv
/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv
/nix/store/b37xsgvjg0ghxscf47j08wss5k7ycddh-unpack-tracing-log-0.2.0.drv
/nix/store/b4hzc67xi73n89dggv4xl8yaj25699f8-unpack-serde_yaml-0.9.34+deprecated.drv
/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv
/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv
/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv
/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv
/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv
/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv
/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv
/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv
/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv
/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv
/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv
/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv
/nix/store/kdvsx168vwq6fn7hrfpzcys3y3qzs5w0-download-amplify_syn-2.0.1.drv
/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv
/nix/store/9csr5809zpnhagdi0j1hzmkp0g9k0gnk-download-block2-0.6.2.drv
/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv
/nix/store/bj226wsr2x4xffqaaiz5p7wxcvsbb6zq-unpack-cfg_aliases-0.2.1.drv
/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv
/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv
/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv
/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv
/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv
/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv
/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv
/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv
/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv
/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv
/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv
/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv
/nix/store/bsik1z38c6idqddpqhjhimxvnqwdbpbd-unpack-digest-0.10.7.drv
/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv
/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv
/nix/store/bw6mx4ywkk1f8bd5x8lmdwr2wm6syhr2-unpack-primeorder-0.13.6.drv
/nix/store/bwqyr92y4nv8g6yfy50xzg4wdbs8sgg0-unpack-windows-sys-0.59.0.drv
/nix/store/byc9dfj23ny0dgq3ymc8dwj1mqf9h9fv-unpack-generic-array-0.14.7.drv
/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv
/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv
/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv
/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv
/nix/store/cg299z8s5nrsq5gix66nx04qbl1bxsp0-unpack-subtle-2.6.1.drv
/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv
/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv
/nix/store/ch89zd4lkx29y10vkla0mq5r2vpaxvpz-unpack-ecdsa-0.16.9.drv
/nix/store/cim09h451jhjfw3imgjd9bj58p4hsrj3-unpack-windows-strings-0.1.0.drv
/nix/store/clngf20qlmwzkiizh47580b8y32ml0nf-unpack-syn-1.0.109.drv
/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv
/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv
/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv
/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv
/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv
/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv
/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv
/nix/store/d6d1ky1gx2jhnm28zxdgv5f01q2dlcys-unpack-signature-1.6.4.drv
/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv
/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv
/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv
/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv
/nix/store/dam2pxinqf61ckwsrp2dyx9aki10pcyx-unpack-num-integer-0.1.46.drv
/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv
/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv
/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv
/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv
/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv
/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv
/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv
/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv
/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv
/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv
/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv
/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv
/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv
/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv
/nix/store/dxlfswnd5v7i9kb8ckd483wlr4yf3252-unpack-winapi-0.3.9.drv
/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv
/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv
/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv
/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv
/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv
/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv
/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv
/nix/store/s6xjlpnxyj4gmd9djggclwfxkdcxfdpg-download-aligned-0.4.3.drv
/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv
/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv
/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv
/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv
/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv
/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv
/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv
/nix/store/fq6z1bfk97vi5l95mbf3cxdxxphxfwnr-unpack-elliptic-curve-0.13.8.drv
/nix/store/g144a0gr4ral3ch0haq81qfj1h1d19h5-unpack-sec1-0.7.3.drv
/nix/store/g3v7cvvnf6y47lgpxlyfx0bl05khxcxp-unpack-fnv-1.0.7.drv
/nix/store/d8kbfbn5iq5wwgavzb788vmpimxkdwwc-download-blowfish-0.9.1.drv
/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv
/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv
/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv
/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv
/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv
/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv
/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv
/nix/store/gplf894w9rmsdkpiyldzpaw6m8hxxy99-unpack-windows_x86_64_gnullvm-0.52.6.drv
/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv
/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv
/nix/store/gqp2jxdcks3zfyz1rqlv6qyzi7a1ss70-unpack-windows-targets-0.52.6.drv
/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv
/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv
/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv
/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv
/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv
/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv
/nix/store/h84w990bdky70fsr8xr7blah02knxvxb-unpack-windows_x86_64_msvc-0.48.5.drv
/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv
/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv
/nix/store/ha2cr28sb4v5k7qxqfic97sj2iq5qxzm-unpack-windows_x86_64_msvc-0.52.6.drv
/nix/store/62rjn7sb56wzfly3pblh1p9gwfi09cnb-download-autocfg-1.5.1.drv
/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv
/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv
/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv
/nix/store/hj97xlr7k9l6xgzqfn86a2zvxbagdjrz-unpack-windows_aarch64_gnullvm-0.52.6.drv
/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv
/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv
/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv
/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv
/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv
/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv
/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv
/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv
/nix/store/fmsb45bmdlmjm49xj1nga45h5dj6jhzf-download-arrayvec-0.7.7.drv
/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv
/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv
/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv
/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv
/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv
/nix/store/i0697m4fbpc8k30va9rl7i9avf3vqd6b-unpack-powerfmt-0.2.0.drv
/nix/store/i3k80rgsvp0sm610131k8ff9df6h05cv-unpack-nom-7.1.3.drv
/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv
/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv
/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv
/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv
/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv
/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv
/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv
/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv
/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv
/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv
/nix/store/i8hdd9nssr14wn7npsz0i6660gqxm5w4-unpack-windows-sys-0.52.0.drv
/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv
/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv
/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv
/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv
/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv
/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv
/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv
/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv
/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv
/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv
/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv
/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv
/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv
/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv
/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv
/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv
/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv
/nix/store/ixmzvlfkbq2sfr6f1wf38m85m8ys5nyh-unpack-same-file-1.0.6.drv
/nix/store/4j2hkzfgpghdb609j95ax4v6jbwzmbxc-download-amplify_num-0.5.4.drv
/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv
/nix/store/j710v54qbgly4qq2j8hl5kvz29abx9nv-unpack-unsafe-libyaml-0.2.11.drv
/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv
/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv
/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv
/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv
/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv
/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv
/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv
/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv
/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv
/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv
/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv
/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv
/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv
/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv
/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv
/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv
/nix/store/jlr356pp2251b9irq1n292ia2c5cyk7j-unpack-minimal-lexical-0.2.1.drv
/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv
/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv
/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv
/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv
/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv
/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv
/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv
/nix/store/jvrkgc7rxhzhb0gf28isszq2f5bmhbx9-unpack-windows_i686_msvc-0.52.6.drv
/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv
/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv
/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv
/nix/store/k6idnzp58kaw5ip1q1v8nl1iqw7v5vq0-unpack-pem-rfc7468-0.7.0.drv
/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv
/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv
/nix/store/kd0yblzdg8yg6l7q2yfcf0cnfha7x4z1-unpack-base64-0.22.1.drv
/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv
/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv
/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv
/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv
/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv
/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv
/nix/store/4vmlyq8j7140536rvx5vnhwpc12ddaxf-download-atom_syndication-0.12.8.drv
/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv
/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv
/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv
/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv
/nix/store/9mdzm9rsnyjcdbnzcz7qcmr09dr52xbv-download-anyhow-1.0.103.drv
/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv
/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv
/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv
/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv
/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv
/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv
/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv
/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv
/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv
/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv
/nix/store/ldy60vgihfwy6c3s6xxvwhh786xrwf0a-unpack-rand_chacha-0.3.1.drv
/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv
/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv
/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv
/nix/store/ln41ss68n27cjz41k10lndh2d054z721-unpack-vcpkg-0.2.15.drv
/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv
/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv
/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv
/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv
/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv
/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv
/nix/store/lswiq1n2rxhlwinz40kmd3bnppd9aa9v-unpack-hashbrown-0.14.5.drv
/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv
/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv
/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv
/nix/store/m3qly5hs1mgqlpiagfap0aph54q7bl6b-unpack-windows_x86_64_gnu-0.52.6.drv
/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv
/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv
/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv
/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv
/nix/store/m8hm4i39bm8z1a3f762rh6vi84kaaxxl-unpack-base16ct-0.2.0.drv
/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv
/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv
/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv
/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv
/nix/store/mpdcga53cza8gr2i632q2r4mcfsiz66j-unpack-valuable-0.1.1.drv
/nix/store/mq7qy52930pakb7p2f7nxrv4ijch0p3m-unpack-mime-0.3.17.drv
/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv
/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv
/nix/store/mvyvza2lrz5spwrq235jnzf0szh14mhg-unpack-windows_i686_gnu-0.48.5.drv
/nix/store/mw4w1rr13yamrdv5bwrbvd1psl6aqb9i-unpack-walkdir-2.5.0.drv
/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv
/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv
/nix/store/n6g3f82bxxmvy0bmqxk556hrggs2dypr-unpack-winapi-i686-pc-windows-gnu-0.4.0.drv
/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv
/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv
/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv
/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv
/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv
/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv
/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv
/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv
/nix/store/nmawlrrn5q3axy353v62054vz59n751v-unpack-version_check-0.9.5.drv
/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv
/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv
/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv
/nix/store/p42zmnxv42n1dlwcwkbif2b28jfm47p1-unpack-tinyvec_macros-0.1.1.drv
/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv
/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv
/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv
/nix/store/p7hmy7yr3zfb8h1a5q6m9b0izvk5fjav-unpack-utf8parse-0.2.2.drv
/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv
/nix/store/p9262yqbmxzqgwhm6cxc5v3q5xy08qwh-unpack-utf8_iter-1.0.4.drv
/nix/store/pavsm9ajbykn112maqls0zjf3rfcwsx9-unpack-const-oid-0.9.6.drv
/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv
/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv
/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv
/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv
/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv
/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv
/nix/store/zmx76zxviiyipld1ds9kr3469achnbky-download-askama_parser-0.2.1.drv
/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv
/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv
/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv
/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv
/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv
/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv
/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv
/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv
/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv
/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv
/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv
/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv
/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv
/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv
/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv
/nix/store/bdbbjylfq9gn1cdb1plgmsgvhv7rm96l-download-aes-0.8.4.drv
/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv
/nix/store/ndlz9b1vywykvrg3p8q6cgrq27nja718-download-base64ct-1.8.3.drv
/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv
/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv
/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv
/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv
/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv
/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv
/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv
/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv
/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv
/nix/store/ia6g9xdkcvrp3wm9lf8bwqpg1n7l3a8j-download-bcrypt-pbkdf-0.10.0.drv
/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv
/nix/store/pvs3j4gmhih37vqcc5aajppm07lb9x6a-download-arraydeque-0.5.1.drv
/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv
/nix/store/qxn7qyrfylfmmdrdv0p9npxjj3lhdrhx-unpack-windows_aarch64_msvc-0.52.6.drv
/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv
/nix/store/hhx8zrl9azl3207vniawrjpbhcr9hkp2-download-ascii-1.1.0.drv
/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv
/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv
/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv
/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv
/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv
/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv
/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv
/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv
/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv
/nix/store/rckyg7fj9ikl53v8g7jcwwk3kf72ixas-unpack-ucd-trie-0.1.7.drv
/nix/store/bb2lw7bjpr0x7c5g5cq1rlb6mi8n0dr5-download-as-slice-0.2.1.drv
/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv
/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv
/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv
/nix/store/af5yqvbdjg4imm17f53n7rq782fymzr3-download-atomic-0.6.1.drv
/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv
/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv
/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv
/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv
/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv
/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv
/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv
/nix/store/8hj5ks0pdl8kn3qshbdw7paass67l8d8-download-anstream-1.0.0.drv
/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv
/nix/store/sa5axmvqbz0vbxk96h89wk32pdx3c4pj-unpack-windows_aarch64_gnullvm-0.48.5.drv
/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv
/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv
/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv
/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv
/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv
/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv
/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv
/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv
/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv
/nix/store/9v4jpm71sxxf5g6f2a9xrmqwk4w9hnn7-download-aho-corasick-1.1.4.drv
/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv
/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv
/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv
/nix/store/hxlb8v2vmjirnbqj427ghn9kdzwh96bz-download-base-x-0.2.11.drv
/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv
/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv
/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv
/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv
/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv
/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv
/nix/store/vhqdg2wj0yk6mgjzmsyxgpl8yzf294h7-unpack-windows_i686_gnu-0.52.6.drv
/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv
/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv
/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv
/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv
/nix/store/vp2j2w5rywz04yfskx6dmv11bwdya5aw-unpack-lazy_static-1.5.0.drv
/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv
/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv
/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv
/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv
/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv
/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv
/nix/store/vxyji46slpw0s1diqyzyvkc0vxl58csg-unpack-signature-2.2.0.drv
/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv
/nix/store/vz6l4y4k0w12a8vbd5wf3mk5mlv8az6l-unpack-spki-0.7.3.drv
/nix/store/w22n1inmavf55jsm3md2rbxpnlfi1avc-unpack-windows_aarch64_msvc-0.48.5.drv
/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv
/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv
/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv
/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv
/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv
/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv
/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv
/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv
/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv
/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv
/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv
/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv
/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv
/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv
/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv
/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv
/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv
/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv
/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv
/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv
/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv
/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv
/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv
/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv
/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv
/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv
/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv
/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv
/nix/store/x1kg5lmnbf6p7hwympqvpym6xv111l0h-unpack-base64-0.21.7.drv
/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv
/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv
/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv
/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv
/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv
/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv
/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv
/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv
/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv
/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv
/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv
/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv
/nix/store/7b0wb3m730ixvkypgnapb3nmy37pza3x-download-basic-toml-0.1.10.drv
/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv
/nix/store/xcsa1xyi1czjmrp0yzhw28avql8yrgqf-unpack-tracing-serde-0.2.0.drv
/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv
/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv
/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv
/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv
/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv
/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv
/nix/store/xgs5y5llnw4d6vg9xzyl64sd0sw2iiss-unpack-cpufeatures-0.2.17.drv
/nix/store/xpy4yzzyis9lqr598k9scw2by0qz8ma1-unpack-equivalent-1.0.2.drv
/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv
/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv
/nix/store/q9bk7z9isynx33v6dq28yyssg5c6lrbv-download-askama-0.12.1.drv
/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv
/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv
/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv
/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv
/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv
/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv
/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv
/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv
/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv
/nix/store/y4q0y9r7ss35ll86iffn3fdp6qxhmrrx-unpack-sharded-slab-0.1.7.drv
/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv
/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv
/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv
/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv
/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv
/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv
/nix/store/yb1azf25rfm47r3avfrglghidlsnlzv6-unpack-pkcs1-0.7.5.drv
/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv
/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv
/nix/store/yccvjqn8z82fs0v6f3y10sw26vf3nfvg-unpack-byteorder-1.5.0.drv
/nix/store/hfzmydl70r9b8j9cg5cbym06vkcwp1an-download-askama_escape-0.10.3.drv
/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv
/nix/store/ycqia6prwfizy1gn7a0b8iw8hc3yz0ps-unpack-thiserror-impl-1.0.69.drv
/nix/store/yd3wkmbshp7gbgffknq3kdmzwhwky9vb-unpack-nix-0.29.0.drv
/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv
/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv
/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv
/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv
/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv
/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv
/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv
/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv
/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv
/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv
/nix/store/yh4ncch1yi852wicw1ydgwhd4bim9r5v-unpack-windows_i686_msvc-0.48.5.drv
/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv
/nix/store/ylbw4qbg0zl3xb95y8nzp13iwh832p21-unpack-encoding_rs-0.8.35.drv
/nix/store/ynhn4hs135h13kf7igrd100igxxh6pzh-unpack-rand_core-0.6.4.drv
/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv
/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv
/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv
/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv
/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv
/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv
/nix/store/yw5s76fcljw0zs3i6n8xg8qn5h9514xg-unpack-p256-0.13.2.drv
/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv
/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv
/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv
/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv
/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv
/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv
/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv
/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv
/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv
/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv
/nix/store/zivcawvlzccfz6hqcrr6aqpwjdmyjp3r-unpack-ident_case-1.0.1.drv
/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv
/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv
/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv
/nix/store/5kn988xs18acfs6x0pb1ys79y42gyxyw-download-anstyle-wincon-3.0.11.drv
/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv
/nix/store/hlswgrlv98riiyyif1wgmlqkan1qbyif-crates-io-dependencies.drv
/nix/store/40aja02dirz0ip58qs9blix0k366n0x0-config.drv
/nix/store/rs5adi2rms661a9cmg7ckp02knj0si0b-radicle-e2e-fixture-root.drv
/nix/store/45pn2anzfcx4iyqxsxzg9mzjs2y2pcb4-docker-layer-radicle-e2e-fixture.drv
/nix/store/jmpa9svs7abv9fvqrmxfpcl55sfwjk8l-Cargo.lock.drv
/nix/store/m0k3np9n9dmbffnalz60kz5cg93jwsi2-Cargo.toml.drv
/nix/store/53yfhn3crxx1q7xlw2x8vg8wzvrhm0hd-dummy-src.drv
/nix/store/z4la5z9dmssgqz063xlkdyxhi2mwhnkx-radicle-devcontainer-ci-deps-0.1.0.drv
/nix/store/vv5s43q1plpfvigcck02sd2dns2m8myv-radicle-devcontainer-ci-0.1.0.drv
/nix/store/7dn0nzbjw7c8kf440qbajz0z21i3xa56-ci-broker.json.drv
/nix/store/8a3nv8h35w77zfqjq4da911rc5c47yr7-radicle-devcontainer-ci-devcontainer.conf.drv
/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv
/nix/store/8aa6978z3bdffcrpdjnnm94nsdfp709q-docker-image-radicle-e2e-fixture.tar.gz.drv
/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv
/nix/store/9dvsbcvp04fgm4dw4fr21hb69w0jz4pr-X-Restart-Triggers-systemd-tmpfiles-resetup.drv
/nix/store/a72fxbm8pr7c422a9lcnmk7jx5ypxqza-unit-radicle-devcontainer-ci-cleanup-devcontainer.timer.drv
/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv
/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv
/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv
/nix/store/w2n07xq6yzr4z2ln4m534c15i2n9qygs-dbus-1.drv
/nix/store/xd08z16xsjw8ii54w1gqqp958n9gzyvc-X-Restart-Triggers-dbus-broker.drv
/nix/store/y2iafwjnjddhy0jz7s4zfdgwdrx1i5z4-unit-dbus-broker.service.drv
/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv
/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv
/nix/store/fxxqzgvxc613lcz0bd3j08ws479c1z7x-unit-systemd-tmpfiles-resetup.service.drv
/nix/store/imf40ynccxdz7whvxhdd60q4hk8pc6pr-ci-broker.json.drv
/nix/store/rxqa0qax1zrn7l63fzjjijwicqnag0wv-unit-radicle-ci-broker.service.drv
/nix/store/ynxyki3sracigmi7k7zfklkc1nqpayzc-unit-dbus-broker.service.drv
/nix/store/znpqll8qdcl83m9k94xfkwndw3708yhm-unit-radicle-devcontainer-ci-cleanup-devcontainer.service.drv
/nix/store/zl9f7b1mz4w08sxdg3f94xmw05925504-system-units.drv
/nix/store/y5swz027fyskrjxfad171f23xy9w4p8f-etc.drv
/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv
/nix/store/zjf1p06n5rb59pxy3x8355384iqc5ifa-activate.drv
/nix/store/gm7x7xx8k2padig47brgrcdl5lszddbm-nixos-system-seed-test.drv
/nix/store/hiwli3klrm8kfg3maihvzp9zzsp558bs-closure-info.drv
/nix/store/bcwmzpr6krv43w1fizl9j54p78alzvn0-run-nixos-vm.drv
/nix/store/kpfjzvym247qcmarzi24w7c3i6acchvn-radicle-e2e-fixture-repo.drv
/nix/store/j1bw68xv004ym14svpnscg5bykq45mzn-closure-info.drv
/nix/store/lk5rgd71bv27wl8070szjlr77hdgzal0-run-nixos-vm.drv
/nix/store/dbdmkzakvcb2s4jals80s2klwkryjqwy-nixos-vm.drv
/nix/store/hgqdnrwfp4vrvm3xnvygrp8dmhlbd0an-nixos-vm.drv
/nix/store/rcxkk5fchphpnz8xrjs1xii956kb9jmf-test-script.drv
/nix/store/nyibayix15xb2nfpj3mlx86l8rnzzg67-driverConfiguration.json.drv
/nix/store/fqqaq2mpjvi6q5a5wr461jghfx7lyi42-nixos-test-driver-radicle-devcontainer-ci-e2e.drv
/nix/store/d1616pa2fj438fm1y3vyavyy7a7rf5dh-vm-test-run-radicle-devcontainer-ci-e2e.drv
these 936 paths will be fetched (1.7 GiB download, 5.3 GiB unpacked):
/nix/store/1rq23rv9dwv06qxaqkyh094w329lz9fc-50-coredump.conf
/nix/store/dy22jzjikspk0v1pf1yvlvvffncnn0g2-55-nixos-aslr-entropy.conf
/nix/store/j7br92ry2mzycg5h33sri8q765ahmwjr-X-Restart-Triggers-dhcpcd
/nix/store/kjry8f6qwxgk6ldiv7nm0pak44c1pgs6-X-Restart-Triggers-nix-daemon
/nix/store/pmlqlz93823krppqr4dw5651d0jd5wi9-X-Restart-Triggers-reload-systemd-vconsole-setup
/nix/store/r52rzv131yhm94m2mwabm3xyk7ly05lb-X-Restart-Triggers-resolvconf
/nix/store/pn77172h2v3c2vbjqrjg23c6dws10dij-X-Restart-Triggers-systemd-journald
/nix/store/hcjlsfyi05lx353zr4wi8ffxllixdyx8-X-Restart-Triggers-systemd-journald-
/nix/store/pv0hcs45v03zrybjm40pvq0lj808r64l-X-Restart-Triggers-systemd-modules-load
/nix/store/a42x1kkjwqq9dly0dyvx85766fns28yi-X-Restart-Triggers-systemd-sysctl
/nix/store/y3ihhwj84yf5589f43cbhvmy14icl6fh-X-Restart-Triggers-systemd-tmpfiles-resetup
/nix/store/l1lswih6fzqyzfzz676h9xi91wbarq7j-X-Restart-Triggers-systemd-udevd
/nix/store/9xxaaafivbqzdz5ijyhbyyqnlb8i1l5g-aardvark-dns-2.0.0
/nix/store/x0zgiss9hdzcsll3cswgfa937aqs12rq-acl-2.3.2
/nix/store/p5nar9b6naimw250569xr7xm8rxschkw-acl-2.3.2-bin
/nix/store/i8qm43nyb1nh4fizbwr5dd3z8a0grnxa-acl-2.3.2-doc
/nix/store/d39yxmbcqm0qzkrk9ifbsabhl7qg6n69-acl-2.3.2-man
/nix/store/sliwpszl1rk1ij7n5cxw0y6jj48r0p7k-ada-3.4.4
/nix/store/08nfpyc4qhzdkc37nznvfpbybihyr063-attr-2.5.2
/nix/store/wjrhknj0z96089brz54cnzbhxdlyxgpq-attr-2.5.2-bin
/nix/store/pjfkvyg76yfjlcxfj3f5iq0rj1siv62m-attr-2.5.2-doc
/nix/store/h69k863p9xpsgas628rslmwfqd4h92kq-attr-2.5.2-man
/nix/store/7sw4rf00p0161r5bs930givq75aikw6x-audit-4.1.4-lib
/nix/store/2qkvl63rdry04ivf3sky9a11mhslxnyv-aws-c-auth-0.9.1
/nix/store/xmmxg0vbkvampcsz2rp792nj0s65iv5r-aws-c-cal-0.9.2
/nix/store/gwh5pxnk9c2kh8h61cny2104a8js9lbs-aws-c-common-0.12.4
/nix/store/h4ardg95sqm0rhm66hhnswszlmcbfng9-aws-c-compression-0.3.1
/nix/store/yvj64swn2m15kka56is116532l2alvq5-aws-c-event-stream-0.7.0
/nix/store/kd83ihdc98dv3fs0mb4bbnasxhdkiird-aws-c-http-0.10.4
/nix/store/zvnw1680fwl1k6cl7xzhhrgsy3sq4181-aws-c-io-0.22.0
/nix/store/3vdi224qcvjx81l643zchd9mvcl8miyd-aws-c-mqtt-0.13.3
/nix/store/qv8wizskbvabi6bivkbx63nl35qkzpfp-aws-c-s3-0.8.7
/nix/store/55b7xlh5df20di6q2vi8xh1k8wzvxhn3-aws-c-sdkutils-0.2.4
/nix/store/644xx605fcrcv8nwxljbbfvjihnp2d6r-aws-checksums-0.2.7
/nix/store/nhdzdp2xxbpa6r9wpi5zbmvwlvqlq2dc-aws-crt-cpp-0.34.3
/nix/store/zh1ijdhb6gng1509b1zrilb6xlzx60j6-bash-5.3p9
/nix/store/8rx50z8s7d55j2pyh46fz1d58k1fbrjr-bash-completion-2.17.0
/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9
/nix/store/5j2akpmlk107gzdqkms35r3nwhkwnibh-bash-interactive-5.3p9-doc
/nix/store/pspjmjsphdkjsi20gpxh2p1aq6p73n1c-bash-interactive-5.3p9-info
/nix/store/b67fr4nba948zxxpmdsnzqr06l9fnnag-bash-interactive-5.3p9-man
/nix/store/z3xsw1ggynf3qpk7hdsb4xsqijhgjla7-bcache-tools-1.1
/nix/store/z92j33bqka9563p53549wbzz0lq06709-bind-9.20.24-host
/nix/store/whpwcxng4h08bq0yya2vb7fgqn8pd7dj-bind-9.20.24-lib
/nix/store/5n0q5i7j3i6llbcbq1l9xrs2ny7aqvsw-bind-9.20.24-man
/nix/store/39lyf5g2iz4jd2r6q4g5whk9vw09zglj-binutils-2.46
/nix/store/y4h9ak6f3z22hvq97jwh90lmc4agx28c-binutils-2.46-lib
/nix/store/z4zcd87nx2hrsdayd0vl2mx5ncj3ikd8-binutils-wrapper-2.46
/nix/store/53zj9vfwqsqa87dia0vnwn5n1xz1h569-boehm-gc-8.2.12
/nix/store/b5nvyda1lqngjz1x0zv7p02qkkaiz88m-boost-1.89.0
/nix/store/6zjsi3arbfgbmhj9c7bqk9mgd5glcq1r-boot.json
/nix/store/iwvks829gwh94cnvgxvvvdppd258r9nv-boot.json
/nix/store/y574lyg1hs7zy43v5q255fz8xq0qp3wf-brotli-1.2.0
/nix/store/pcq77h5mhc5nfvf1rs92a5l5g0kaapdg-brotli-1.2.0-dev
/nix/store/lyfl6ran99smi6r7yfvmf7xj8jq6n4ry-btrfs-progs-7.0
/nix/store/b1lyn1hdqrr25d58chjxnbxsrvv64js7-builder.pl
/nix/store/a48z5j76wm1n36yq87hsxh3byf2zq4h1-busybox-1.37.0
/nix/store/lc20sfvskz0my6phs73nmsnlrxp06kgb-bzip2-1.0.8-bin
/nix/store/hd4gg5ps1i4yc1b0lzr786vm9l7ii422-bzip2-1.0.8-man
/nix/store/2xfxv5d6j19nqlxaqpxvrd5y28j8x3x4-c-ares-1.34.6
/nix/store/vr1j1sr76ayl3r4j99b0bdl3mcny3ha5-c-ares-1.34.6
/nix/store/0gr13av5discrw3ffn20bay1spv2c7h4-c-ares-1.34.6-dev
/nix/store/8kmlxnyp4wbvxwxi3bjafcsr2x8bdljf-c-dvar-1.2.0
/nix/store/nc4k66gifdindka1a5fs15f450d269y4-c-ini-1.1.0
/nix/store/z1wq82v5y815qb41ias7j6ddi859z0md-c-rbtree-3.2.0
/nix/store/zfyzxlf7ln05zgwpywliwlir9r20510a-c-shquote-1.1.0
/nix/store/3s4k5rll7n8bwpmk7v86q32b85b3n6pk-c-utf8-1.1.0
/nix/store/i2ysxjbmgd77qmrrv2s1qhxnwbjisi2k-capstone-5.0.9
/nix/store/6gcrqjdzbx71bavmmrqpl3hw1ljml7vi-cargo-1.95.0
/nix/store/9lwk3ky6317b2k5babwanl9ka72v744b-cargo-bootstrap-1.95.0
/nix/store/8j0ipc0lmgbjl1fpj764wj86i8bq58bh-catatonit-0.2.1
/nix/store/3dc62d25sfc4xrl629c3ksakrwn7j0lw-chfn.pam
/nix/store/rldvgvqrmwfwjcxvdds5a3h8v6f9ndqk-chpasswd.pam
/nix/store/xqjbrfarli7v6jnyl9pap9r8l5ziikb1-chsh.pam
/nix/store/anqlj1jbfwwc4k73540164wm9ph7dysj-cibtool-system
/nix/store/bihf75h6irqz02v22wjy64n07hqhdwrc-cni-plugins-1.9.1
/nix/store/0gjgzxznqxwjgi7gxz9p8ahl8yl8a111-config.json
/nix/store/h2xv6hcj8bxldvbd1qfrhps8p3xw5sb1-config.json
/nix/store/104r7fjjlsslwljwpb38cs70d40b1aw9-conmon-2.2.1
/nix/store/3fd9dhs5bn4nl92a0ppqabyzwfc94xf1-console-env
/nix/store/ffgdcqvdd33n2j79s06ki7g9cdv51mmn-containers.conf
/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11
/nix/store/xgqww6fdbdpkmh1gffhxjhd5bwwnf0hz-coreutils-full-9.11
/nix/store/6bqbv6gxvagfkky5c010rvf84vm4l7yh-coreutils-full-9.11-info
/nix/store/bbfrw9pncsp5pvybrfp26swb93vy8f9g-cpio-2.15
/nix/store/83izyxvw00pqxi3dxlq81i15957z7wyp-cracklib-2.10.3
/nix/store/z0zc92vx87chidgnh8hknssrb5dr0zcq-criu-4.1.1
/nix/store/kz79516g3b3fcn92h67bz1ilhxsyblng-crun-1.27.1
/nix/store/ga7hgba1656wk4hbpyphflnjq2x2997r-cryptsetup-2.8.6
/nix/store/jbkfqpgxnnxwnxpvzjw0bjb9p899fpjq-curl-8.20.0
/nix/store/k0ha2r9v214m0gg1hl688a0y5149y1q3-curl-8.20.0-bin
/nix/store/w36yf3psz1zhgabw03hlag8bw0rdfsav-curl-8.20.0-bin
/nix/store/0kdxyv90bclwbvw10fr28j5i16zrr9m8-curl-8.20.0-dev
/nix/store/df7hisry2sni9b7dx84df75m3mr15idz-curl-8.20.0-man
/nix/store/nwpiyrf0dxk776ysb6jkfwcvmfsa4sdx-curl-8.20.0-man
/nix/store/g9hxxfbxr0y2fsan8nc55w9yanfx66ad-cyrus-sasl-2.1.28
/nix/store/0vf7hfclpbakd9nj7sp7qrr7kp48m6nf-dash-0.5.13.3
/nix/store/2yzrnybmshv43hh22bbfcn0nhj34yghp-db-4.8.30
/nix/store/p5rsh81l7fl9dr3cs0j1fgrlb49rlcxx-db-5.3.28
/nix/store/165rncxlyi4f9pjf1zk3hmj3mh2v881w-dbus-1.16.2
/nix/store/fx9ayjlgw4nn5vb28dfkqpkk2dmw41b9-dbus-1.16.2-doc
/nix/store/b7znxzn9wa1wm20dxz05p8f82xpij1cv-dbus-1.16.2-lib
/nix/store/v0c292r3lsmnkmi8jnhb0z73yak8fmr2-dbus-1.16.2-man
/nix/store/49x6wkrr41xqc4imyd2m8vdm9k8pl73p-dbus-broker-37
/nix/store/py2xh8hk2dbvgflrmgc6xfnml504ybwx-dejavu-fonts-minimal-2.37
/nix/store/1gl5mj5cpi3j8ajp3wkkmkfl86vpiz6m-desktop-file-utils-0.28
/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0
/nix/store/ynz9nm6mk5vpv0mh950jm26n6n6gpfpn-dhcpcd-10.3.2
/nix/store/xdf96mph7jk2min6z8kp3kslb0i6dv41-dhcpcd.conf
/nix/store/yrh4w2vvnq13mi3wlk8rkpf4hz61r55n-die-hook
/nix/store/3c05s0vxy8wafaa7lkj4bfh69wa0ch10-diffutils-3.12
/nix/store/vajbg82rq4kq817ic61azz8z5363dy4c-diffutils-3.12-info
/nix/store/mbbchsqa44gcx16skf6v6c6bqiayamc9-dns-root-data-2025-04-14
/nix/store/39wvm11rhrfzfz0zd6df2pzinv4av48s-docker-29.6.0
/nix/store/cwmgn95y2w2ljqcyfkw5hhaha0243r6y-docker-buildx-0.31.1
/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0
/nix/store/60kx0zqfamh8w62x142sc201z71qdr2r-docker-containerd-29.6.0
/nix/store/3yblv07q6w8hygfzsp6nrp0phb79mc20-docker-runc-29.6.0
/nix/store/6gs392xlrviq6npb3vbp6n4w5fp7cg87-docker-tini-29.6.0
/nix/store/alk10nwqax99k8cbrpr4vwkakq9a7sgj-dosfstools-4.2
/nix/store/46ylyjhkaxnk8ywcsnzmac9axczsgkcj-dosfstools-4.2-doc
/nix/store/mccqiz1j8ri2zm814l1hi0p4p3yb44l9-dosfstools-4.2-man
/nix/store/f0xdxfpkx13k9zx7z6yild02bb9adpjk-download-base16ct-0.2.0
/nix/store/0m5dfa9w6dl91hngiqs2bn21l0wds12a-download-base64-0.21.7
/nix/store/4ypdmgy1f4q3g21p0x4wis52kcxfrr2c-download-base64-0.22.1
/nix/store/yps3x419yn3sfb7jyl0vs5a51yvg8xha-download-block-buffer-0.10.4
/nix/store/8xdsvdrzhxi0zhjmiq9glhj53ad7297s-download-byteorder-1.5.0
/nix/store/z140rialh9rsqx76d1ij2cji7v87q55y-download-cfg_aliases-0.2.1
/nix/store/6gsv82wm87sncislcalpq2fws14sw00c-download-const-oid-0.9.6
/nix/store/i3wan3dksjh6hcddbb5ykxvsf33r0zjy-download-cpufeatures-0.2.17
/nix/store/7ds83nnhjh6m9ghpqc8p9i6nwrsfpgd1-download-crypto-bigint-0.5.5
/nix/store/pmdjh642579k2kd3v5l8aw4bjl4id6zc-download-digest-0.10.7
/nix/store/v1lvpv10yjifyrwb3lnhwkv6n9smb7vf-download-ecdsa-0.16.9
/nix/store/83154farcw0iq5ilknngch0qvnm3cgcj-download-elliptic-curve-0.13.8
/nix/store/15r5x7zclgi1ash0q48dbs3pggjxf6k5-download-encoding_rs-0.8.35
/nix/store/p3vbck2kficnr1ybbz0gg96x9v23k0ll-download-equivalent-1.0.2
/nix/store/b0v51a7ak8j8llyqyq8kkc940fw7kb0p-download-fnv-1.0.7
/nix/store/x48kfgarf3bfzx4zjm4hiifgsyg1b5d1-download-generic-array-0.14.7
/nix/store/39f89l131blg1ybz901vgj9ai0ldlav0-download-group-0.13.0
/nix/store/jasyk1nmvqrycx58q9zb8gx9pgh6my2c-download-hashbrown-0.14.5
/nix/store/xw534gcvwf3bjmprvwskgp2yfp8xfcgx-download-heck-0.5.0
/nix/store/2n6q8b4gadj06nq5dlm4dyqxg0zavwhd-download-hmac-0.12.1
/nix/store/g4nsvl3r9psn5i5m3ahpa8wq1wjvzn7n-download-ident_case-1.0.1
/nix/store/81isja5rdp4bkdc5gw43d0ihj4zf03d6-download-lazy_static-1.5.0
/nix/store/lpsrdwfrdj7mfa7408dmwg7mai1a1qb4-download-mime-0.3.17
/nix/store/7cvsr1sbp08f30v2jys7jibym2sbaycx-download-mime_guess-2.0.5
/nix/store/yx7mmh2qi0sy9alkv625ma1lpq0bb3ng-download-minimal-lexical-0.2.1
/nix/store/aibr4pfrbayp1lw5f05zy5azly88i9vk-download-nix-0.29.0
/nix/store/07z9skpwnp95ghy9gxi3f51kklmfanzp-download-nom-7.1.3
/nix/store/0d4l910v06bh3h90dk0z8858xq8mwgqw-download-num-integer-0.1.46
/nix/store/fh6lszch0vrih11y27rmpjnqfq02mnpd-download-num-iter-0.1.45
/nix/store/7bav9k47fz3k4g0cilnlp22z71zrhm23-download-num-traits-0.2.19
/nix/store/f5zjchs27mdjbky8madfcm2ad2wl600v-download-p256-0.13.2
/nix/store/7170ra2y2a9ksby3m1rg8pann3hp96a4-download-pem-rfc7468-0.7.0
/nix/store/m1dw0047wjm3nsbylqysxg6cfmd6pjpz-download-pkcs1-0.7.5
/nix/store/x3b0r92js27krx9mivigjazv8fgs55av-download-pkcs8-0.10.2
/nix/store/3fgz5lzgfkfb8mwkckj7996d3nswf1c1-download-powerfmt-0.2.0
/nix/store/hz6nah8gmc3450njryrfalicsxx374i9-download-ppv-lite86-0.2.21
/nix/store/pjv42h7s82kaq2m5231vz82p3isgjpkd-download-primeorder-0.13.6
/nix/store/9fmm2xxjzn6bcssqf96sq9zxm4i9pzb7-download-rand_chacha-0.3.1
/nix/store/6gg6jvnzhh8i4pml75n9cg4ngk9bf79h-download-rand_core-0.6.4
/nix/store/zhxidx5i2y0mn450f85dx5bj4aa1kwmk-download-rfc6979-0.4.0
/nix/store/p68ch5qbwr45ppb9hsrqc82lfm71v9zm-download-same-file-1.0.6
/nix/store/v0qkm7di7irz82i41bhm3rhxf7yzg8na-download-sec1-0.7.3
/nix/store/j0lzzjf7ys3vbfp27qvaq46diw711g4f-download-serde_yaml-0.9.34+deprecated
/nix/store/269ycmdm2a9i5lg29cmkbnl1d385ss0l-download-sharded-slab-0.1.7
/nix/store/zjlmh5b5bpa2pyhw2b7w77qp4caahzkz-download-signature-1.6.4
/nix/store/i9108jvnysslzqcljik72rv5g0qzx0gp-download-signature-2.2.0
/nix/store/jznqsamg4kqbla1wafxmmyn2kl8r42q0-download-spin-0.9.8
/nix/store/jyk5ln0hnvfmhwqrfq761zy08lxbx9vv-download-spki-0.7.3
/nix/store/pw7qp21a5jwwqvg6y4iv8ivbgihxs569-download-strsim-0.11.1
/nix/store/s381yxshdinnf54nsn425klp36q57gbf-download-subtle-2.6.1
/nix/store/f4q02q3hjrgxalr881kf20c8jis1zbhi-download-syn-1.0.109
/nix/store/a30mhsdfj36ih187xmjz9nz8bpgs7757-download-thiserror-1.0.69
/nix/store/1y122601ddl6wyzzk9nzhcfn9npw33vz-download-thiserror-impl-1.0.69
/nix/store/gi86b6fbyb7vg8pq3szxr9csalnnf3hn-download-tinyvec_macros-0.1.1
/nix/store/8z8mz7hbhz304a49b51xnjc03180k82r-download-tracing-log-0.2.0
/nix/store/p727fbdzz96g8mpnh9jdblxrqfc1rklx-download-tracing-serde-0.2.0
/nix/store/sa4r5nafac671swaw5k7b6xmpya5r1g9-download-ucd-trie-0.1.7
/nix/store/9mccwi4yvqd1gi54kiq30g1872k4wxg9-download-unsafe-libyaml-0.2.11
/nix/store/7y7jmihjys57bbr3m7wcqd5k49d2wgrn-download-utf8_iter-1.0.4
/nix/store/pgdac5wva6ffaqfdpdqhixyg30kma1p9-download-utf8parse-0.2.2
/nix/store/hjncln4an453z9h2imszzk4r615mnbqc-download-valuable-0.1.1
/nix/store/cvl95hld5w3nvdqyx0svv89dkalrcvir-download-vcpkg-0.2.15
/nix/store/mh4hjf46s2jzbis2gm6si8s9nc2vphfk-download-version_check-0.9.5
/nix/store/dlj46kkv658ja3zpcb6v2fngg2lgqjqc-download-walkdir-2.5.0
/nix/store/c2544w6y49p6x1yr9z2ab2mvdskqpinf-download-winapi-0.3.9
/nix/store/8fznfx94dhv1vywgs2ciw6rvd42axbph-download-winapi-i686-pc-windows-gnu-0.4.0
/nix/store/1n3wd9zpybzlj12sxp8npa0km6mwxbbp-download-winapi-x86_64-pc-windows-gnu-0.4.0
/nix/store/i1afhizcy5p17pdhsl5kvibxnlaj73qp-download-windows-0.48.0
/nix/store/57274dngjf7l4k7wbgkx7dda9m3wyzzg-download-windows-result-0.2.0
/nix/store/x1f5ampbshiyjq2zhz14qa58pyxq9dmp-download-windows-strings-0.1.0
/nix/store/wzpggp9jii0ja93hbjxspaw5mp8g3q1q-download-windows-sys-0.52.0
/nix/store/8x131vqc7bbhikz30mjpg8yh3nq66ldn-download-windows-sys-0.59.0
/nix/store/82zk43fbqrx10k4gzh011jgqh4mvgr8b-download-windows-targets-0.48.5
/nix/store/l9a58xm3pnvwj8hpznwlgj7sg3i6hr4l-download-windows-targets-0.52.6
/nix/store/brb0vmnzxzg9mbixqygid882j37n1y1r-download-windows_aarch64_gnullvm-0.48.5
/nix/store/5qfwz5wkcnpnfdlriai3mjx99i46xpbm-download-windows_aarch64_gnullvm-0.52.6
/nix/store/5xzng93y5i7hfnlpsh9c0c6bc9ixbfbm-download-windows_aarch64_msvc-0.48.5
/nix/store/d8ahrc27ymzdpsi9d11179w6z9cgzahq-download-windows_aarch64_msvc-0.52.6
/nix/store/zcn23yf7i7s8mqjkpyrmgpxxksgyzfh8-download-windows_i686_gnu-0.48.5
/nix/store/r8r2jvnd2ig4kr80jzn22vzyawc6zdnf-download-windows_i686_gnu-0.52.6
/nix/store/j154gbsslv2v4jscz18yg11z9csig1nr-download-windows_i686_gnullvm-0.52.6
/nix/store/jhjapbqzmb01ik9p8k2q8r5f2iiqvx69-download-windows_i686_msvc-0.48.5
/nix/store/ksx8i6qz59rrfd9qf8x34i0gvzgqjfww-download-windows_i686_msvc-0.52.6
/nix/store/dmm6y9zwafnylxyz0rdafzqqr9my81n7-download-windows_x86_64_gnu-0.48.5
/nix/store/japx8qiw2ns9g6vzshjxqdp0bj1xndg5-download-windows_x86_64_gnu-0.52.6
/nix/store/jsli65nls9qj4rbdm61qxqp8rkjfciam-download-windows_x86_64_gnullvm-0.48.5
/nix/store/bljn085nnlkh5i3xmbv5by4ay44d2wgk-download-windows_x86_64_gnullvm-0.52.6
/nix/store/4p09nk6cp1kihkj0hhyf95lnzsv1wbg1-download-windows_x86_64_msvc-0.48.5
/nix/store/01lq11sncddwjgk9d948y246b59shf93-download-windows_x86_64_msvc-0.52.6
/nix/store/xw6xhhcb5imkcrl188pjz99q3i5p359b-dry-activate
/nix/store/vr00x34nq68a86c62svc9mjjw3hqvs32-dtc-1.7.2
/nix/store/4i3pvfbjygw3aq73p6gfsn8srsxl2vk2-e2fsprogs-1.47.4
/nix/store/vrp9dc3rcl8gzarvhh5c8dznayp6iwb2-e2fsprogs-1.47.4-bin
/nix/store/byx6hcq1hnxmr7wq7bs02w76n81722q2-e2fsprogs-1.47.4-info
/nix/store/vba9zgvxs8xzbv1cavc42q7m7gb2fb7v-e2fsprogs-1.47.4-man
/nix/store/ybmzybab5jpd6k6ij0pchn4jn6jlczlg-ed-1.22.5
/nix/store/zsgbv06jjlhn9r2xqg0caj3rdbxvxx3g-editline-1.17.1-unstable-2025-05-24
/nix/store/6fbxl0pblmzpm8hm1mg1gdjn7by4qlc5-ensure-all-wrappers-paths-exist
/nix/store/q3gid6c0w1xzxvbv7s5nj4pg68n9vfw3-etc-bash_logout
/nix/store/g1szp7606y96nlc0458pr1v6nwcp2y4j-etc-bashrc
/nix/store/mmbvbkpifrig0k6v2v4nhgac4cmgyddw-etc-dhcpcd.exit-hook
/nix/store/5cr33li5pixn9whn2plfx11pcqsgdp7c-etc-environment.d-50-systemd-path.conf
/nix/store/wxh7lsxzdnc8nkhz8s7bn1wfqc5jcxms-etc-fstab
/nix/store/710v65wf8wa9rhg7ca3xc85ij378q9d3-etc-gai.conf
/nix/store/zmcq6wba9n42p5ikj4xmwnhbkw1g6kc4-etc-gitconfig
/nix/store/bs0r6dcs9hja953ay3h8vy075rjjg79c-etc-host.conf
/nix/store/1k2z88gpm67qsvimj66jf27ln819ia1n-etc-hostname
/nix/store/apjpbg2jh40ak08f5m8dybvn24ynxvp8-etc-hostname
/nix/store/sf767sr18sk9lrjswhphavvxhdnp1wf4-etc-lsb-release
/nix/store/ky4axiq7plkwqy360p7fi3z63yyn933v-etc-lvm-lvm.conf
/nix/store/yw06snyy7i967xw309afxxm54qwf233l-etc-man_db.conf
/nix/store/rvjihmb55dm5ibli532nr4r3jcfk12qy-etc-modprobe.d-firmware.conf
/nix/store/lla194mq2pam6djv6x0n7rjazg0m9a34-etc-modprobe.d-nixos.conf
/nix/store/dsz4bgsmk2msd92jcwhbyzsymygfkqs0-etc-nanorc
/nix/store/qfbgl8ski3m02rxq3hl97y73v9j3axlf-etc-netgroup
/nix/store/7v36jb33abslj3q66vjzxh2dik999w3l-etc-nix-registry.json
/nix/store/zmw8vn90ql6xs2h1zv1i796xppkc4slx-etc-nscd.conf
/nix/store/29w4s0g9gacrrgs86ifg6pv88blbk9hs-etc-nsswitch.conf
/nix/store/ablzm3vzcfwfv4dn3bfvvcla91fxn2ka-etc-os-release
/nix/store/1j0vas2fjgvgln8chgja383h8knm2gya-etc-pam-environment
/nix/store/zbkd7xawi3g72kx6vmmcx686dn3vfsla-etc-profile
/nix/store/fwmwrjwm7kbf2y99p90ny8lq9nqv41z9-etc-resolvconf.conf
/nix/store/i5qabjqr6hb51qmbg37n009fykfl67f8-etc-shells
/nix/store/0xvs3a10lj9vibyzfca6ljgqvcq7f94r-etc-ssh-ssh_config
/nix/store/dn52h90bl4j11whwiqw4sbinspkr4pbr-etc-ssh-ssh_known_hosts
/nix/store/8mlhp8swfbs9sb15amvx1p7mz974a8qa-etc-sysctl.d-60-nixos.conf
/nix/store/cx240166lbv5aqxqjw3r86pgwa74ql97-etc-systemd-coredump.conf
/nix/store/vp1s3d2qfamz8y6b15qf9ms6ndniy3jy-etc-systemd-journald.conf
/nix/store/lmxjpi02xvzrbhmdfp7dg6vzgqnb8sfg-etc-systemd-logind.conf
/nix/store/6s3sd2qvhd5n647xh3h7yxcdiydvpzfn-etc-systemd-oomd.conf
/nix/store/j4m1cwyl0y71pj4j9rj9d6zc03z0j8rm-etc-systemd-sleep.conf
/nix/store/ixvfd87jizqvgsd0q4brxwb93gf2z2cm-etc-systemd-system-preset-00-nixos.preset
/nix/store/ls3v0i4sf473ydchpzmddq6sv17cch7l-etc-systemd-system.conf
/nix/store/x8qv8wjj3k5dlw47fg6ismdazcj5494i-etc-systemd-user-preset-00-nixos.preset
/nix/store/zz5iwrlhqawpp3j0kbzir6zy3x91mkz9-etc-systemd-user.conf
/nix/store/aagixdk8hcs7p107szv9z17p87mx33nb-expand-response-params
/nix/store/lawdl6fwyj55dign3dasn96cy1asgags-expat-2.8.1
/nix/store/82529c3p0fa84d5m5wmppwczh051i12l-fake-nss
/nix/store/ab914p9fwpvl0gwdbxc51wczkgibg24l-fc-00-nixos-cache.conf
/nix/store/zac0s2hjynd9gm71lmifygnba5jgzrif-fc-10-nixos-rendering.conf
/nix/store/3fb95q31ilwc5416pw7yzqh17hsv3cnw-fc-52-nixos-default-fonts.conf
/nix/store/z8bha3w5ndpkrz2hsk042320akjsn4sz-fc-53-nixos-reject-type1.conf
/nix/store/hwlv1bbi634w3f2n0yl3bs2l3gsgwb2v-fc-53-no-bitmaps.conf
/nix/store/s8s062iw5k48kzykd6r45z2fhl6kkcl2-fc-53-user-aliases.conf
/nix/store/v2463wx0spc5ki8jni880b5z2yb888f9-fc-cache
/nix/store/fp44fypr19g4fb8g56yml16n3rb2wa3h-file-5.47
/nix/store/y1fmsp7vhpdaclpqbsgm2qyl7yixx4ci-file-5.47
/nix/store/93bjlzpa0w7cg6fmpkgxa7494ac9rwf8-find-xml-catalogs-hook
/nix/store/zjwih3d9rrrw4ixll52wsy0538p7vdfd-findutils-4.10.0
/nix/store/z9xp5gx83h9j3nyn1qmlimfb9jnda70q-findutils-4.10.0-info
/nix/store/7ghz0fdi19rfq6r9xzr8j6w47hpr75n3-firewall-reload
/nix/store/nxb6zxmvczf5k60h85w06qh32scpqa0p-firewall-reload
/nix/store/w7mdgdvbyd9fmf7k9jl7lglvblqk32ag-firewall-start
/nix/store/wshfva2xg7l5ck28fk0im6r0kr9r9ygw-firewall-start
/nix/store/rgxcm4k1ldv9clci07y6ns3lpkig2bcz-firewall-stop
/nix/store/x7bbgcrzg61071mjzq6lwsdzsj12w0f2-firmware
/nix/store/36z7msh6ps0hy8l575ai3v0lvsyppja1-fontconfig-2.17.1
/nix/store/p2zr4mm1xvv1c6j2v0913nmb69mk3rc4-fontconfig-2.17.1-bin
/nix/store/mksx1i8qmgxlvxib2myg4d1faz3x7kmx-fontconfig-2.17.1-lib
/nix/store/bqgsimdnlzi5r9wwnjzjfp7pxgwyaq7m-fontconfig-conf
/nix/store/n10gajqdjr3l783d7pbjj07ixvkajpw4-fontconfig-etc
/nix/store/hiy13xbjr54lx4f7nck27jkrgldvhkbq-freetype-2.14.3
/nix/store/cbgbg45ibrfmyskia0346d39n8rwlr41-fstrm-0.6.1
/nix/store/kbfmv8c26k95bqwwicl50m972rbm0496-fuse-3.17.4
/nix/store/gann902zf0bliq81v07j9m9mqfpwg62w-fuse-overlayfs-1.17
/nix/store/cdd73p8qiphg0scs02i6lrg1sjsdvbkx-gawk-5.4.0
/nix/store/w7vfh5f0nwnkdzkbr6r1pq4s2iw3fv6p-gawk-5.4.0-info
/nix/store/51ng815cag7jga0yc55wph1z9nymshx5-gawk-5.4.0-man
/nix/store/sq0nrnfwhkc5ljvklnrk5ps4358g4nbj-gcc-15.2.0
/nix/store/xcnqqnhw9hb4j5rjgds2yjryi8qki5f3-gcc-wrapper-15.2.0
/nix/store/75bbfamip7akc94cpds1zq3xrjsj048y-gdbm-1.26-lib
/nix/store/zj9pvla611b1gvhfz1i57knf9xi3x5qz-getconf-glibc-2.42-67
/nix/store/cdqbzw7gmcd62s8pyif19psr47l4000q-getent-glibc-2.42-67
/nix/store/mnfvcwhr7nzgljrc4wqcbslkiz7hyb26-gettext-1.0
/nix/store/azhv4jkrfv94m2r5a8raklqjm5gzyx80-getty
/nix/store/qg93fjzs4cxds7s5rnqgr5n3bd7gkwp4-getty
/nix/store/kf1v2ncrf1w42640ib6br8d95z40rvxs-giflib-5.2.2
/nix/store/k3wl6cg7q50zkx47af3msmg1yrg1f203-git-2.54.0
/nix/store/9a0f1mfx8n1b8y64qx9999pq70j48ms6-git-2.54.0-doc
/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0
/nix/store/7dl2py4dnp4ffj92r1lq0i54ik1v8kzn-glib-2.88.1
/nix/store/3vvvgxggqj0rbvjk46y1n9xg8nbpzk2m-glib-2.88.1-bin
/nix/store/521dd0054ifhzmjfmpx9mz0hr7wh7sig-glibc-2.42-67-bin
/nix/store/q5wv2ldpcv5w8yb2wmsngsygvlxb73fk-glibc-2.42-67-dev
/nix/store/fg4gkw8jr3w0cmikyxhcqr2bp2npm09w-glibc-2.42-67-getent
/nix/store/dkij3qk5h8rwzysr42w02knfl95vz8q8-glibc-locales-2.42-67
/nix/store/zkw0hl5pzwkmrvkrfvr1q5zlk28nv9v2-gmp-6.3.0
/nix/store/rfabfsmwq02sn94mb3qg9jwvxbqfwmsr-gmp-with-cxx-6.3.0
/nix/store/4i7gvqwiq5mbl5pxh43frzq2nibxvwb5-gnu-config-2024-01-01
/nix/store/w8xlvapzxcz23ba312q119p57bnc7200-gnugrep-3.12
/nix/store/qk4mw1nwcmfhbcz4g7gs3lpzi93dag4f-gnugrep-3.12-info
/nix/store/i4jf7w00lr5q85r55rc35n83l7iwys73-gnumake-4.4.1
/nix/store/hs795wc8sza4yvj4cixjy740xmnjs5gv-gnupg-2.4.9
/nix/store/jm2hb06dgsk95yrwqq187x9982bjqmdd-gnupg-2.4.9
/nix/store/0hamsiy8hsyfw1hmizbc3bf93ad7fa1v-gnused-4.9
/nix/store/gxapzvp834wn041yqv35zwzasamvqziv-gnused-4.9-info
/nix/store/066fzlsj0wdq2sqxjrksysfxyr4r5f72-gnutar-1.35
/nix/store/1j461raj6r4hihrq9j6alrddmx837fzs-gnutar-1.35
/nix/store/avcnv3j0l6lwsffrihbhj84pgy11yqj3-gnutar-1.35-info
/nix/store/z49s8zpdckv2jbl1kbzdhl48z3f7hqv7-gnutls-3.8.13
/nix/store/nlq2d92hx7pa39vpac4micjbk3a1kyjv-gpgme-2.0.1
/nix/store/i6jrv1f3mygdh2gv5r2yn1lm77d3qals-groff-1.24.1
/nix/store/6mskackqnab34ag1gfiyk5xkcvlr1hba-group
/nix/store/ajnnsmibnabj24z0ic9k8anxgafsy5zl-groupadd.pam
/nix/store/fk62si4ggkxjcz50g1n6jy74n7rbbs5s-groupdel.pam
/nix/store/0zzp232518qq3cc293pca9f257xijr7b-groupmems.pam
/nix/store/03iyy5s5016kmggxpb04xrx5rf2bqimj-groupmod.pam
/nix/store/jgsa8qcsgnf74f2ckd60aw001id1k26b-grub-2.12
/nix/store/jg9xadqy2n82vkq67raclifaq83ca0xv-grub-config.xml
/nix/store/h304h5a5y9h1pl6crhz65jlri91nxyay-gzip-1.14
/nix/store/nrgw1z0ignphgixn48kcbhw87fmfz921-gzip-1.14-info
/nix/store/2mp57my43vk18q784acjydykd0xmr0j7-gzip-1.14-man
/nix/store/sydc4li20q5zmm3airw7dzx9z5aicyd1-hashed-password.root
/nix/store/dzks1gas4j5xhdyig9b53yb5g9s1h7i5-hicolor-icon-theme-0.18
/nix/store/151865bk1zyhli3lfyp0529cmh76hwn5-hostname
/nix/store/fnjxr88fr51wfzs7wvdv2qv43h7jr10x-hostname-debian-3.25
/nix/store/hgf9k6s6bcpff2v6mkm1pmbvvyr2w5z6-hostname-debian-3.25-man
/nix/store/wzswkrp7nj4534a7423n7j7vkcaxywn2-hostname-hostname-debian-3.25
/nix/store/2b22nrljd7n71qzqyv8kr0pr6v47h39p-hosts
/nix/store/4k6nzlz8c3rylf8jrygq3hmyw80lppc7-hosts
/nix/store/1df8022jr4q1xkd7rsd7kvhj4pd8vqsh-hwdb.bin
/nix/store/ds6s2a0iyim3rc9gfhrs0xf1q8x0ymxv-hwloc-2.13.0-lib
/nix/store/657nyvrdribi7if64nhykz0vji7ljn1p-icu4c-76.1
/nix/store/sw10zxhzf97isship9a6ngv994zkpmyp-icu4c-78.3
/nix/store/pg672d2fmabasghm8xcz6j9avh1a30jc-icu4c-78.3-dev
/nix/store/wdin7x5jyy8ikw69027n98q3q3f9kijv-inih-62
/nix/store/ad1411ij7fnaaw9821x2g273vm4q9qac-initrd-linux-6.18.37
/nix/store/qykiaq4fyaxrwps4mbghrp5anj786a8c-initrd-linux-6.18.37
/nix/store/c5yg5f08qarylj0xml1kwj2awspyh7xi-install-grub.pl
/nix/store/i2yqcgj4qwl24fi58wsk1h09gp4cgnj1-install-grub.sh
/nix/store/qbsvh4fw7lrmkqk870w4sc21kqylph42-iproute2-7.0.0
/nix/store/lm41c7chc4r259afsi99v0rqn6bg79vk-iptables-1.8.13
/nix/store/r36gn0mdw2vlzzv0nz1wyxcd6xm08c8q-iptables-1.8.13-lib
/nix/store/511bgnp37ama3rgq2bywx2lhiq7wadl0-iptables-1.8.13-man
/nix/store/5y9n56lgv2748sl3nfxlaxpm4lid9i1h-iputils-20250605
/nix/store/qncjg8hd6mcma9fzfyxdxc74d9m1hbpi-iputils-20250605-man
/nix/store/9zgdw228zjfd4jzr901qzxhfcf43kz91-isl-0.20
/nix/store/kx98afay8i2j8vny54b56jghf3pim2pd-issue
/nix/store/iq1pcns688mzilimz10294nj4774hprn-jansson-2.15.0
/nix/store/4b9fnqw9c48sbiidi2j5dchw8lmi21z9-jbigkit-2.1
/nix/store/chjh9l35abi2y3xnygpk8wyj828hyic8-jemalloc-5.3.1
/nix/store/k59krzj3hnkflm623b1mhvgibkmjfnc0-jemalloc-5.3.1
/nix/store/bzm6nb8fx5p005bygrarn48i6qy1ir3a-jq-1.8.1
/nix/store/q0pj1dw2nr57y6b4pqljklf0hy20alfj-jq-1.8.1-bin
/nix/store/3vavalljj18drsycygl361zqz4rryygd-jq-1.8.1-dev
/nix/store/yqjfznv0cgzwsp3hwng1vxm1wvp4ynqz-jshon-20170302
/nix/store/y68xqa5hwa1xn4d3fppbs452c2hamhdk-json2x-0.1.0
/nix/store/fynagizpw08nvf6icpdyjarbar5p2mcj-kbd-2.9.0
/nix/store/zxa2qqg35pszrid7k25ybfj1q64q9174-kbd-2.9.0-man
/nix/store/yhbxryl6698ig8kzrmgjb4h288m8wyil-kexec-tools-2.0.32
/nix/store/lfj10jjq7l48m6w8lh0lwj8prbw4b6fq-kmod-31
/nix/store/x8n1yb7wh7msk0lvj3xawcw77967pvvy-kmod-31-lib
/nix/store/w49nkqjidq5l6fmdbsn1i4rq8aw2v7ib-kmod-31-man
/nix/store/mnp08y1j94rrfkng33lhpxpdnlai7wb8-kmod-blacklist-31+20240202-2ubuntu8
/nix/store/fdbs1v4c1n5xq5dnzrbz9aypc9q2q5jk-kmod-debian-aliases.conf-30+20230601-2
/nix/store/90n49069jcmw024l1jp72ai9dj5lmilh-krb5-1.22.2
/nix/store/w89lngipd4prsb03m5fkpf4x3036scl0-krb5-1.22.2-dev
/nix/store/a6932cfi2zzgx1qsyrgd1fqh9491c05r-krb5-1.22.2-lib
/nix/store/6xa5z7yrhzshhizclpl9az3az2dwb761-ldns-1.9.0
/nix/store/6ywssag7pi7pnh16gpima8d5icwbais6-lerc-4.1.0
/nix/store/3phyk704x9rlgs58b7w14a6wsfc7jfar-less-692
/nix/store/n63sk81g09b1c7sv4294dw6mdwm55f11-less-692-man
/nix/store/5x85b1fdkwflrlh1y3jza6mas50acacj-lessconfig
/nix/store/4pfqnr2ik12v6hxw2k1kafllk492y1zh-libaio-0.3.113
/nix/store/xrnir0r9asp1gyf5qali282gg3l36hlf-libapparmor-4.1.7
/nix/store/fr3qqvg4iylba6hpf53pr9k27ddv2826-libarchive-3.8.7-lib
/nix/store/z04p8rprsg9wpjsr2al8af3sfn2bd255-libassuan-3.0.2
/nix/store/f5g7iv09b3z04wxmlq2ybnhbx3a7nvim-libblake3-1.8.5
/nix/store/b2f0cn980wsjfh2l1hczga2mlai0djnp-libbpf-1.7.0
/nix/store/9vk9y8h8md996zkjiwydw624hwkfrkbh-libbsd-0.12.2
/nix/store/4bfq8grfaagmycyaf0iafrm7pyx0dzhf-libcap-2.77
/nix/store/d48gvvb90v8avl74k44xn940rhb2iqc3-libcap-2.77-doc
/nix/store/wn2rikr7gzgvmhsp2a9pphg2qfz2rbyz-libcap-2.77-lib
/nix/store/md6mcqass948yf0l72add4q1cl5vhnj7-libcap-2.77-man
/nix/store/28pf35ppgz019c1d2q709pnkkcqdqlxp-libcap-ng-0.9.3
/nix/store/d2dmvcm642r48kp5x7nzg504kqikcfdm-libcbor-0.13.0
/nix/store/hyf7m87blkdjwp1bf45waxjhhk4zx812-libcpuid-0.8.1
/nix/store/61wvqlkj92m30wnki32b5y1icqm8wdpf-libdeflate-1.25
/nix/store/wi6ggxa7zy2i6yy03b5f3pf7a47knnd7-libedit-20251016-3.1
/nix/store/gzpx9ardq9njswhpv1cakxzih1ig3jzd-libev-4.33
/nix/store/4c9lbyb7payh9akmia87v38bi82vdidb-libevent-2.1.12
/nix/store/lqlgzd7h53xqykzgm5cs30s746sjlsnk-libfido2-1.17.0
/nix/store/qp14ji38fkmy939yghbwrnn8dpb5ycif-libgcrypt-1.12.2-lib
/nix/store/wlpjjjw5f7pqv5ksbnwbny4gar2clhdz-libgit2-1.9.4-lib
/nix/store/vb5nfiqv7rw67lv60w0si4n4q2bwmnml-libgpg-error-1.59
/nix/store/4b37gbgcbbdm1kvqfbnx989qsz55zzkx-libice-1.1.2
/nix/store/74rfjz4ix2zc8669fphryawyf9yh2yk9-libiscsi-1.20.3
/nix/store/cc98qw6f8xk09spfyp0w2xxzc4nscp0v-libjpeg-turbo-3.1.4
/nix/store/48d1xzfvpi39ysfp5yh1xzpg1z5hfa1q-libkrun-1.19.0
/nix/store/q54dl7rr2y229lyz1n166rl230yk3aip-libkrunfw-5.5.0
/nix/store/9hiz27p8bl78z5y55msnqag4brlkxh6q-libksba-1.6.7
/nix/store/brygjb3xvc1rp7ddnfjdcyp2pqdq4s7f-libmd-1.1.0
/nix/store/ylirzjzp6fxm8xdp8547kbbshbwydxs2-libmicrohttpd-1.0.2
/nix/store/4zm8lh24bq53iil6kd552d17y5q815hr-libmnl-1.0.5
/nix/store/c0i98bjjwf0lcmrh97123qayrzchxz3d-libmpc-1.4.0
/nix/store/4rhx4wzjh7b3mqrap2xq9j70qylchgci-libnet-1.3
/nix/store/43pddf1xp5az9rzxljhl5la2m9xxmvps-libnetfilter_conntrack-1.1.1
/nix/store/c5nbbqawilqs5xayr6hcwa8qvlz4wymm-libnfnetlink-1.0.2
/nix/store/8d9b2rwmr6yk6z7g4vqk284ydrpgxiyf-libnftnl-1.3.1
/nix/store/096bv8ac4y9i535w502zk67cdph88sl3-libnl-3.12.0
/nix/store/lahfs5a95092gnqisnky12x63wa06qsp-libpcap-1.10.6-lib
/nix/store/zdnklkiwplm3xbzgg07nnq07c3z0mfig-libpipeline-1.5.8
/nix/store/yzv7lxhgkiggw4yyh4i4igpi5jc43bhk-libpng-apng-1.6.58
/nix/store/5fd78i1yplqk80drr25x68xx5y6hf1vi-libpwquality-1.4.5-lib
/nix/store/yqd57f7hdzrzs7za3mdj58f9hm0xmwjj-libressl-4.2.1
/nix/store/yph01b0dap73v30fj76jnk48af5wpp31-libressl-4.2.1-man
/nix/store/333b26zbv2zqk62jhylgrviflk7lmcdg-libressl-4.2.1-nc
/nix/store/mrds6svi9pkbrsxrq3nbsi09zbyshhgb-libseccomp-2.6.0-lib
/nix/store/114gyk70x8my82fpcjnxksqbhxxh1j51-libselinux-3.10
/nix/store/9g5kibhrndz0g7s3i80kcv8wwi6kz47d-libslirp-4.9.3
/nix/store/kpyiq73aiq90cc4nn4y8v4kw9qzhysbh-libsm-1.2.6
/nix/store/bs6w35m2a5hfkpi8lzbvw6zkl35pdx78-libsodium-1.0.22-unstable-2026-04-09
/nix/store/w5lmwpf3abphzw1wcfy40a3sb2djw9gl-libssh2-1.11.1
/nix/store/b6dac7q3270fhwxr0glxi35hrhw2v97r-libssh2-1.11.1-dev
/nix/store/qa77jydj4h1n2lj4gzshrmkvinkaz3y1-libtasn1-4.21.0
/nix/store/f51ch3asrp52bly5rdarh3823wfp1x91-libtiff-4.7.1
/nix/store/9xw59kidx5dh9b0bzk1why292ww1swkd-libtool-2.5.4-lib
/nix/store/25hs1bkz6dxlg4j97r24jwrkw94000zx-libtpms-0.10.2
/nix/store/n0ac1vxwkbklbpdhrc6s6vw5ra96vlxv-liburcu-0.15.6
/nix/store/rcka4ghbqhv6b9j78v7m3071hh0cz4cj-liburing-2.14
/nix/store/sklp68pzhi1zxdmav50103v50n84snvk-libusb-1.0.29
/nix/store/hb0162ab7wxqm1sdfy23zbmgayj1z6aj-libuv-1.52.1
/nix/store/9dx1l7x3fbps5i3ad6lrw27i6c65balj-libuv-1.52.1-dev
/nix/store/l6pwiihhn9jkxrm38qvf18b3c4qpd2w4-libwebp-1.6.0
/nix/store/flhvh2a7c578zbca9arvn4n2vc2pcgpc-libx11-1.8.13
/nix/store/8df4dy2m15wm65f5ksd6rvm5n87jm6vm-libxau-1.0.12
/nix/store/xpzd2xmvqpkv1la78qkfpybkfwak27xd-libxcb-1.17.0
/nix/store/mlcv28rh7faq6iqmm9vkny11hbbicgir-libxcrypt-4.5.2
/nix/store/lgcbdfspxmgyrxmb06j8cwy3qdlry8xp-libxdmcp-1.1.5
/nix/store/b0dnb18ak3qwrkml30b5a9xcgk1vsb92-libxext-1.3.7
/nix/store/hm2ixz0mgyx22sxzihs8ix1rsj2g36y6-libxml2-2.15.3
/nix/store/6hr2fq70f4v0b3sn666xjswq4l1y8j95-libxmu-1.3.1
/nix/store/xp5rqfd76c5a87cg7k6pbspz3r0h016q-libxslt-1.1.45
/nix/store/498qnbvjw49sgap3z1fj81mrjm5r2kk8-libxslt-1.1.45-bin
/nix/store/25vwqrg79nc1zkpz6z2ib3zhfn28j6vq-libxt-1.3.1
/nix/store/iswwp0p9sa9iyiar387r423qhqpwpi4p-libyaml-0.2.5
/nix/store/l8ccis497ymkh2m479l6j8q9ivlp8xkr-linux-6.18.37
/nix/store/jz6sjcglvyw2q4ji2d5h7mlvcl0y811r-linux-6.18.37-modules
/nix/store/vp4jm49zag4h91q8lqrkaaw8f2z94ld7-linux-6.18.37-modules
/nix/store/1hrk7xhpm6h98n0lg1qixfrr2kb96zqs-linux-headers-6.18.7
/nix/store/w9kkr15qfa6avzxf3v9xx4nqd18jx6c5-linux-headers-static-6.18.7
/nix/store/pv8aczqkk94gzxhx0gk168gpxcll0svi-linux-pam-1.7.1
/nix/store/0cx4sx34abcvd49mwzjyxq4j5sxlbbmp-linux-pam-1.7.1-doc
/nix/store/xp2mmlvqfjn3c7mlxidd9hl27bmr7hn0-linux-pam-1.7.1-man
/nix/store/j3sa6pskpfznyrgssf2xidwv6s135yra-llhttp-9.4.1
/nix/store/l7890dh7yg3k88q80qfjxcq2g2ykh978-llhttp-9.4.1-dev
/nix/store/gxn1783kzl6ck34h22w6f7pwnsnpm84v-llvm-21.1.8-lib
/nix/store/ccihqmbbygsvx7jap8apl5jwp8ipy61y-lndir-1.0.5
/nix/store/1mjccm03wyxpvxxdcxazyd7l8k449rc8-local-cmds
/nix/store/76515nbh5qvc5da181kq04gn64ac7dbz-locale.conf
/nix/store/s1gylv2h5x3sjmc2rnys7r9jmlbcci7q-login.defs
/nix/store/m147xymm1adbj0ii9agk4gbidsfm12f8-login.pam
/nix/store/2jracld554p4sbgz6kiv3hbjmcnla7am-lowdown-3.0.1-lib
/nix/store/r850j8cb8b5m4lnfalc24qzd3w2pllxc-lvm2-2.03.39
/nix/store/s0dj8i42jk7657v99jkr71mi7xiv5y66-lvm2-2.03.39-bin
/nix/store/7cw0q1x70lh28m2p23mz0b0bglxd3z45-lvm2-2.03.39-lib
/nix/store/lj0kksb2cw2aswamwl1698xsag610bh3-lvm2-2.03.39-man
/nix/store/rp6slcysgzpq6kwvr3m44nzcm1v59lps-lvm2-2.03.39-scripts
/nix/store/9bgw49f2lk2wc3gxizmg987xmgpqplqx-lz4-1.10.0-lib
/nix/store/fm9ga2sqj5mg40v35zn4mcn7sjj8xp9v-lzo-2.10
/nix/store/qi6pv56kjs30bphl10iq4vvs9pbvc5kh-make-initrd-ng-0.1.0
/nix/store/f16vss2p6m6r7h7a81473x31gqj8j4ha-make-shell-wrapper-hook
/nix/store/17mdxjzbwxyndx8n4911xkjxb08qd97r-man-db-2.13.1
/nix/store/8264x7106x7r4cj6gmh1jja38jy9zy8x-man-db-2.13.1-doc
/nix/store/61pg12x7vjhbm7ygcb35rifw0ns6rlbw-mbedtls-3.6.6
/nix/store/yzk102adj4f5qxhnwa1g9qwlizhqqfpf-mdadm-4.6
/nix/store/4di4qyw87irc26vwya4d713x8q979w8v-migrate-dhcpcd
/nix/store/lfkkl8qiwp5910xylcxf3256hl5r0ri7-mirrors-list
/nix/store/xcnbkxr59k12dylqibbklhiard9lwagq-mkpasswd-5.6.6
/nix/store/1m5ihbyahgy8kgqnlfiqfji13myflvqd-mkpasswd-5.6.6-man
/nix/store/x2fbx900bd4gls1szz5xa2ndb1ayznm2-moby-29.6.0
/nix/store/mdjl6nphk6xaxvk2kdilx9dwx7g7is1w-moreutils-0.70
/nix/store/azbxy2h24vnwjrd5h14pm151wq4k5rpf-mounts.sh
/nix/store/xnlpfhi3m3in4b1h8h905hpv97gc8b07-mpdecimal-4.0.1
/nix/store/wzigz21rnv9nj8g7r8ai8ldm84zqnhda-mpfr-4.2.2
/nix/store/bxpcyzr9vbmzkglrs9052l5pa3npvc4b-nano-9.1
/nix/store/gh6qk4jxgfh66q4g9afmazvfdlh0vk7p-nano-9.1-doc
/nix/store/zjlnqc8xaixf3qmrcw9wypybra0ah63k-nano-9.1-info
/nix/store/23hqhqhiz4ss2yg7ym5v4m1kwcmv4n7m-nano-9.1-man
/nix/store/mxq1r9w2w2y9lsqb5fkcyb5xbbki1n57-ncurses-6.6
/nix/store/6cblb0wy8kknk5jwj2gzah0jz6ihj3kx-ncurses-6.6-man
/nix/store/fg0mvr1a23jp4s4q0h78vphmbcf70s0p-netavark-1.17.2
/nix/store/s0vq7pas9sm25sj371w1vh0dj7s1al76-netpbm-11.13.3
/nix/store/203ifzgl14b1cmajfjxm7xa7cpkqbplm-netpbm-11.13.3-bin
/nix/store/9pnfm1nn2r9kpy5b186lqah0bm9466hs-netpbm-11.13.3-dev
/nix/store/v9c75y1hd6yzlgiwvxriigylqgznq3rg-nettle-3.10.2
/nix/store/0w7yga0dygcrpcgb29naqwir3i43ldgd-nftables-1.1.6
/nix/store/c9bpnmih30f3mc686nzv8z7h72j7g59k-nghttp2-1.69.0
/nix/store/lk89z9iw03dg967ddm1bk8zb76g1npyw-nghttp2-1.69.0
/nix/store/4xp8hvv4wwxylhpik0i10l9bz6a74jaz-nghttp2-1.69.0-dev
/nix/store/bf4w9hbfia75s34k42gxsn1x59whrck0-nghttp2-1.69.0-dev
/nix/store/n1xnarcyxxkgcs5h23l8ryk0avdmsk3k-nghttp2-1.69.0-lib
/nix/store/1zfj3dfa76ss61d1daxp5ibwnrq3lvdd-nghttp3-1.15.0-dev
/nix/store/f1h5xcj5pnavg6cb2anq8jzf4camssik-ngtcp2-1.22.1-dev
/nix/store/2gkq62yzbw9kplg5yb6yhf57ckhrhrsd-nix-2.34.7
/nix/store/yr2bi0ih7kq27rqqpadn4vdi5vpq6fah-nix-2.34.7
/nix/store/67v87bnfygr8s87cinkzan1cxkwpa4r8-nix-2.34.7-doc
/nix/store/blqs16h4fi2ini732l9mdclb24s2r7sc-nix-2.34.7-man
/nix/store/g4nh5r7fncc4a9r72m4asmllf9p4igkd-nix-bash-completions-0.6.8
/nix/store/z8sp8bniwl5mxqnqprrjzsvhyhx94waz-nix-cmd-2.34.7
/nix/store/prs3vvry5dw9gqy7frwg1ny119swakjs-nix-expr-2.34.7
/nix/store/2xdfvwmz1d8awx30zqn5xm0q4fi35cz0-nix-fetchers-2.34.7
/nix/store/vwfmljzmci7c55p7mr36p27zs16rra3j-nix-flake-2.34.7
/nix/store/2r4vkiiczl3wbkxzdm4947vbc5hg635x-nix-info
/nix/store/fw3r0zah42cyp44dz2arqncwws4cb87a-nix-main-2.34.7
/nix/store/wqzp256kha5gnqjx9qfiki3pp4p415k1-nix-manual-2.34.7
/nix/store/xd94f9y5r9zf5m4slxxdr7la8rnsnpwy-nix-manual-2.34.7-man
/nix/store/1rlxgf4457g2s35ggl5shif6v51z3hpp-nix-nswrapper-2.34.7
/nix/store/0hin4abpq9yk7zrl1x0v0yaw1x8yjpy6-nix-store-2.34.7
/nix/store/l5p52saf0rh1fspzwfx32813pb1ap597-nix-util-2.34.7
/nix/store/xvdf2dnj66vyyi0jjwxr17qjk0v3w8fp-nix-wallpaper-simple-dark-gray_bootloader.png
/nix/store/q9hpx610dycyvwxck9g45jdk58b98bfz-nix.conf
/nix/store/m2pjzl81hy7x344c07fmmccchp05wz1i-nixos-build-vms
/nix/store/87j3qncak23klay0kkg7djlmf9p7pivh-nixos-enter
/nix/store/0g2hwwr5b0slbi7qn992y8yliqrwz0rb-nixos-firewall-tool-26.11
/nix/store/qjhvf910da4n8n0lbgd4b7whsn8xfjm4-nixos-generate-config
/nix/store/2vwh1xcpc942x4crpxqyr4y441rrl0q1-nixos-init-0.1.0
/nix/store/mi5px4g8w6b0xqv9xrzqbr69rx57j3rx-nixos-install
/nix/store/ys8dm6v622p89nypdhxk5jfnklyy7qy5-nixos-option
/nix/store/04xxxafkhsh8l7grm68wx1srrf45w6wh-nixos-rebuild-ng-26.11
/nix/store/65piy3imx0gzqibhf8nqmnva70wln2hj-nixos-test-driver-1.1
/nix/store/iws4jw7h8a8id6akyirv9hfivr13ar0d-nixos-tmpfiles.d
/nix/store/9sy6jxskz0gnanqn74i2g4l0ra92lc9b-nixos-version
/nix/store/p74ai3ddhqnlwn1s9fl7my2bbmkxmq9w-nixos.conf
/nix/store/g2a3pjaq93a32yji3i5wpwvdf7rzhisd-node-gyp-13.0.0
/nix/store/zvj0hl7rhh0ccr5vkcg3ijs3xm3sgyac-nodejs-24.16.0
/nix/store/scl9b1j2vsl07pp54ahy455232ka7bz5-nodejs-slim-24.16.0
/nix/store/9dzp8xb7b32w0125grg80cg04dicc4z2-nodejs-slim-24.16.0-corepack
/nix/store/d92cn3k9m5jbbyaysn723bk7vmaxnb47-nodejs-slim-24.16.0-npm
/nix/store/qdgn56z6kyp9si6i228vg7xzxmbvfi8n-npth-1.8
/nix/store/7c1zq1gyqcfh0784qf9hi5fl6adkw36g-nsncd-1.5.2
/nix/store/033cpffggbriqz6mcx0743ax75nd5jzk-nspr-4.39
/nix/store/a2h42s6p2xs0sk3hqfx973jlnvxzynbc-nss-3.112.5
/nix/store/zdl7dn1gmi1cxdw5a8hw6xsf4cz0rjmg-nss-cacert-3.123
/nix/store/c3p2kzczdl0m4ahglf58f58np7ic7cby-nss-cacert-3.123-p11kit
/nix/store/n7vzh8day7g32l5j9pfn1yckw4p24qks-nsswitch.conf
/nix/store/s1c2f5jp18p5qi44yf9kf9dqjdd3xgxm-offline
/nix/store/cfnwlci0zx0bwd26y4bs74vraprak75g-onetbb-2022.3.0
/nix/store/4z1k9vq4dgzsa8ifbmdgv1y7wqdqq234-oniguruma-6.9.10-lib
/nix/store/rlkx75hswvsdw704zhszq3jhpclrlarb-openldap-2.6.13
/nix/store/3rs4srw1phc3hbkr7agimv3b30cmvi4w-openresolv-3.17.0
/nix/store/ww2wf5b928m0b53dp2bdifpgqqyfshvb-openssh-10.3p1
/nix/store/qp1rqn8wnpzk0d3qkc3k6dg90xyqwbq4-openssh-10.3p1-man
/nix/store/ci20by4f9vjkpy322f631qcwv6l5z32j-openssl-3.6.2
/nix/store/clvbx203wyqkdnqc5ngyhjlhcqn5s9x9-openssl-3.6.2-bin
/nix/store/rxwvcdybfbjf92p392yslfqxy75gz72m-openssl-3.6.2-bin
/nix/store/a8jlbhcp8p38gz1lfxrkrb6359ksc9fx-openssl-3.6.2-dev
/nix/store/i0jqva96qfgc76g8w7jbyiv6h3si07b9-openssl-3.6.2-dev
/nix/store/c9hiv1bl92xdlf9y7a5z1j69zvib7980-other.pam
/nix/store/d3y9krrxjz9xyrwfr2f71d1yk6ck95yx-p11-kit-0.26.2
/nix/store/w31v80w6c9vf32sai5yy9gwqa8jwcw8g-passt-2025_09_19.623dbf6
/nix/store/pc4lgmj789nahrarw12h4dzqqjrdw4nh-passwd
/nix/store/fpca5by8rjbkv3mxkzzkm9yg4785nfzi-passwd.pam
/nix/store/vm55g5jg7ra19gdsxsxr092vpb52ayiz-patch-2.8
/nix/store/jbav217344pndjbghzyjmh0mkzy1973i-patchelf-0.15.2
/nix/store/x2zjc47pkhcwxr4iyv5xj3hdqfzfnyd9-pcre2-10.46
/nix/store/qpmypc2hndyyxk30zv0xi0qcfx739f5l-pcsclite-2.4.1-lib
/nix/store/k7kxg101ikkm0cyf8jcqhg948vy542af-perl-5.42.0
/nix/store/9xcz36wjkkfzqm4r292lkxkbwmpy0yl6-perl-5.42.0-env
/nix/store/g8p7crgbkpz5zg5fix180l28d2lgz94c-perl-5.42.0-env
/nix/store/pq1hdv2iw524jxf3wls1zbcr2rjl245v-perl-5.42.0-env
/nix/store/s4fl727sc2lrcc6z7yygm7si8iwxm9h1-perl-5.42.0-env
/nix/store/v5nr4phfz5m886i4ln5svn3cvdz5jx8l-perl-5.42.0-env
/nix/store/xwpqh0yzv7k8q9rd21gv73854jvasngk-perl-5.42.0-env
/nix/store/vjsdgy4nl5j1yk86wf0107c6mq9jaaij-perl-5.42.0-man
/nix/store/qxmvz707fkrlws1nzg2ybarylqdq6lbx-perl5.42.0-Authen-SASL-2.1900
/nix/store/ppxba0slb94s8n398djv5524iz9fm1cs-perl5.42.0-CGI-4.59
/nix/store/3zk9744r2rj11b5w5q7z28wvhwir9by3-perl5.42.0-CGI-Fast-2.16
/nix/store/flh86wwn4sb0ypjw3xa33ckrjcvglwi6-perl5.42.0-Clone-0.46
/nix/store/ihyqpcys1fga4lrpzk0ar64zwf8fs9gz-perl5.42.0-Config-IniFiles-3.000003
/nix/store/zbxpzihyljvbzlwzdm4xhcqwwn84ny6h-perl5.42.0-Crypt-URandom-0.55
/nix/store/nbar62x3aibspqdv9wqx6gi5bp1hdlps-perl5.42.0-Digest-HMAC-1.05
/nix/store/ij20p9wmv0qx7nqgxyc9fxpwyvmc0yrd-perl5.42.0-Encode-Locale-1.05
/nix/store/32bzgyak5xxqywb5f192rhy66s10d8kk-perl5.42.0-FCGI-0.82
/nix/store/0f0b5ib2g2bhqwrckbpnmi3ymllc3ai3-perl5.42.0-FCGI-ProcManager-0.28
/nix/store/b1xzw268cvag1c7l9f3f228617mh40vd-perl5.42.0-File-BaseDir-0.09
/nix/store/m935rz2ndg0dsamr1iyx26i7zzbkmirk-perl5.42.0-File-Copy-Recursive-0.45
/nix/store/akyvbnhyv3w66cd70fcxqigbfqbncidg-perl5.42.0-File-DesktopEntry-0.22
/nix/store/x5wsgi512g43b11kjm4y3ini1zi6ia5h-perl5.42.0-File-Listing-6.16
/nix/store/fkzm58nfnsm92psfggg75ihq29ja1fyp-perl5.42.0-File-MimeInfo-0.33
/nix/store/byyx9mb58vfnlxdizfpn1lfzyashbvnn-perl5.42.0-File-Slurp-9999.32
/nix/store/41hfkx6xb65vrni7c069zswilgqmm83x-perl5.42.0-HTML-Parser-3.81
/nix/store/8zym74vvwybljf7knrbk6dld5dx7g9k1-perl5.42.0-HTML-TagCloud-0.38
/nix/store/gjg1jlxsy4p8yqz6jar18vc89cpbhmx5-perl5.42.0-HTML-Tagset-3.20
/nix/store/6jhkw6gp3s340n03cwn4wsg8v2mxfk70-perl5.42.0-HTTP-CookieJar-0.014
/nix/store/abd4q3bry0j26yxnwwbgxwj6bdhkrc88-perl5.42.0-HTTP-Cookies-6.10
/nix/store/m68xir4xrrad9hidxhvy2gibf2sk2r15-perl5.42.0-HTTP-Daemon-6.17
/nix/store/xnaqr54jgxcc1smp1brqjjj67yhj2p4j-perl5.42.0-HTTP-Date-6.06
/nix/store/vwcrqj2ri25i3i02vyls78d8d160p15k-perl5.42.0-HTTP-Message-6.45
/nix/store/4ig5yxmsb6372g31fjwngnmyl1lnkknv-perl5.42.0-HTTP-Negotiate-6.01
/nix/store/7a1fkns1l0addvfnnc2idxldq3p5kcgr-perl5.42.0-IO-HTML-1.004
/nix/store/hf249rjrydav54gmmks6y5z1pqx2jf0l-perl5.42.0-IO-Socket-SSL-2.083
/nix/store/9005dvz7bafcqa1avy158q75zrf9606d-perl5.42.0-IO-Stringy-2.113
/nix/store/jxn9w2p51ifbkha1h4kxj8c5s2fc2slh-perl5.42.0-IO-Tty-1.20
/nix/store/qn4hriwdhrja2kfiza5v9ck86l4c5dkg-perl5.42.0-IPC-Run-20231003.0
/nix/store/fx42k6xn9jrn5ww66wmg2rakb4jsd55d-perl5.42.0-IPC-System-Simple-1.30
/nix/store/as1pfphd8zla4j9s8vfz3rjzgvank2ki-perl5.42.0-JSON-4.10
/nix/store/pw08p81i20j52nbfls9lx30cv4dd0smv-perl5.42.0-LWP-MediaTypes-6.04
/nix/store/sqkvs0afzdsxs6c489ycvfj518ky2490-perl5.42.0-List-Compare-0.55
/nix/store/irqbmz79qzkw9jrk8nh20gw5g24k2skd-perl5.42.0-Mozilla-CA-20230821
/nix/store/yvjj0clffzvqjmis6bqsyx5pcnq6zc7f-perl5.42.0-Net-DBus-1.2.0
/nix/store/i608kgj90db0lp90xlp3bxx2vmb4g2m5-perl5.42.0-Net-HTTP-6.23
/nix/store/g3d0nxmgn4z2mkssyhwgn6xy94fm0vxd-perl5.42.0-Net-SMTP-SSL-1.04
/nix/store/nji0pdvar7qsrmslfn4qk6y4cz872cfa-perl5.42.0-Net-SSLeay-1.92
/nix/store/k5qi03xws2k700fqc75dnz4l29slkb56-perl5.42.0-TermReadKey-2.38
/nix/store/42wgpn29fvy4qqw7g04bjn15jv1c7s2l-perl5.42.0-Test-Fatal-0.017
/nix/store/ijyyr4z6f0iv4mb95bmsf9v94bg0r56z-perl5.42.0-Test-Needs-0.002010
/nix/store/0qlr9lqfqgiz36qplvf4n3npdc4dp1q5-perl5.42.0-Test-RequiresInternet-0.05
/nix/store/1v9hy61g6qhl5rcjbblfj36cjwgxp0h5-perl5.42.0-Time-Duration-1.21
/nix/store/1f4745c6ni1jw3fybw1ybj7r6b0dsn8r-perl5.42.0-TimeDate-2.33
/nix/store/xbqyzyjihyys5n986qmwwp32x84z1cj5-perl5.42.0-Try-Tiny-0.31
/nix/store/vb5imqmjbnshk12wkyfpc3zgym8mh65l-perl5.42.0-URI-5.21
/nix/store/xh7hrjakx0g2hxpinan5k0la22n96y1i-perl5.42.0-WWW-RobotRules-6.02
/nix/store/nh8lz196bq583nd5mrk893qk4772dpbc-perl5.42.0-X11-Protocol-0.56
/nix/store/w7kv0f7nh5mmywnxjlzmy3bcj57xkgxp-perl5.42.0-XML-LibXML-2.0210
/nix/store/ywimhfikf5r1vxz9n4zjdb8wacv0z9xs-perl5.42.0-XML-NamespaceSupport-1.12
/nix/store/bg96q42d184i3a2pb2i7dd4w8a65z3f9-perl5.42.0-XML-Parser-2.46
/nix/store/aihr6xrv715f12w3k86n02ijccd2j8kf-perl5.42.0-XML-SAX-1.02
/nix/store/ws1jzkk2xd2554mn8fcxxkxq4g0sysgc-perl5.42.0-XML-SAX-Base-1.09
/nix/store/jn9b394ifr7j997693lsaal2fb6119ai-perl5.42.0-XML-Twig-3.52
/nix/store/4k2l0ci1amcsm8ii63zrwswsf7qrygsa-perl5.42.0-libnet-3.15
/nix/store/6jphlr7f8adnrgvi34msvgnmcm1qz7vd-perl5.42.0-libwww-perl-6.72
/nix/store/si3vsc5dpfx51kw60y1vmby6r0k7s8lx-pigz-2.8
/nix/store/mwwr9pw1xqar6a725mnkw3fl5iahyj1m-pixman-0.46.4
/nix/store/0k4s0ss8x6lm13vp3c2m26p7vkg3vkc3-podman-5.8.4
/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4
/nix/store/8vczlqjvk4dbbgqvphfvxb6g5v5b45q2-podman-5.8.4-man
/nix/store/kkhz8xbkp161f1472qfc10grlvkbjxng-podman-helper-binary-wrapper
/nix/store/nxwd1day2pm25w717s02bsaraybysvvy-podman-tmpfiles-nixos
/nix/store/7jxay6z45zmbkm26xcf3j70jxvlhnhzl-policy
/nix/store/9wbgv2cccng0wx8c7wjxkbwhk8jpnh8f-popt-1.19
/nix/store/c557jxiq3fnl3gmibw4a66c5b88fyf80-privkey.snakeoil
/nix/store/ly5j6qg2q3vn899jd9dz0hx11gvjh9f1-procps-4.0.6
/nix/store/573fkig1caynqahjsa01wa2pdgyish69-protobuf-c-1.5.2-lib
/nix/store/l9k0anq0z7zz81zcwy035jfwap9ga6rl-python3-3.13.13
/nix/store/y6bd9q4vcv79hwa915zn57db737hna2d-python3-3.13.13-env
/nix/store/2pplli407gv19zabvic99sz5pawiq1pp-python3.13-annotated-types-0.7.0
/nix/store/vn49ilhymsv1acxq7xk6k3gxdjfn9chn-python3.13-appdirs-1.4.4
/nix/store/ym603qwyh2hx7p7h700q9xyi80wj709q-python3.13-asttokens-3.0.1
/nix/store/3pszgxh7nlzi1kibvf06h1jh5jpam6zb-python3.13-cbor2-5.8.0
/nix/store/l22fp7vhwvf6zvhk3mf7wmra6llb1pv7-python3.13-colorama-0.4.6
/nix/store/mi2rsw259cj5h0fayh8w1phshbpnyym8-python3.13-dbus-python-1.4.0
/nix/store/cwcw98b43wr4mf4g5w7pmrr795mgcbcd-python3.13-decorator-5.2.1
/nix/store/3ccyvlpw5kx1ry1j83809nbvpk7vjdwx-python3.13-executing-2.2.1
/nix/store/g91dg98j57raih2plr9zz6345yrz035v-python3.13-ipython-9.9.0
/nix/store/8l952gg93y4nb98ma5skc28rcglavpp9-python3.13-ipython-pygments-lexers-1.1.1
/nix/store/azypd7fxab3b6wvf9myakq0qcjw18fxh-python3.13-jedi-0.20.0
/nix/store/f2yaf97fj4g2ag6zwwkc8zqnnqkq2h11-python3.13-junit-xml-1.9
/nix/store/9hqfprx1x6gw6zclb42rimddv87gv903-python3.13-markdown-it-py-4.0.0
/nix/store/516p8j4q7dsqn0f89janx51wzicwivyb-python3.13-matplotlib-inline-0.2.1
/nix/store/67121l3kphg2ad9lc359bbhd1nqvq33c-python3.13-mdurl-0.1.2
/nix/store/ssn81asmf6hpiia638crdqhcrfdwwgxs-python3.13-parso-0.8.7
/nix/store/mzpn9q2h4lzvas0hki9vfyfrn3dlm4gj-python3.13-pexpect-4.9.0
/nix/store/x6pa4drjnd374xl71x060jsj06fiwkib-python3.13-prompt-toolkit-3.0.52
/nix/store/g282wy9c5kphvchxa309sgb2ij666wag-python3.13-ptpython-3.0.32
/nix/store/lxk8y2siyl31gqdwky7hhrd164fhjw9p-python3.13-ptyprocess-0.7.0
/nix/store/c652h5dsz5cc0qyb9v1j7z222vcx1lh0-python3.13-pure-eval-0.2.3
/nix/store/zs9s5hdr7ibb9rfx0bv35b38x51vnb4a-python3.13-pydantic-2.12.5
/nix/store/y5bb4gli12v0pvq1rck01w4zmdavfayz-python3.13-pydantic-core-2.41.5
/nix/store/vzw28zjszh3miba384pbc3riazynky4c-python3.13-pygments-2.20.0
/nix/store/xh1irjfvrz7c3g2z29wvd0fd5j1mr274-python3.13-python-dateutil-2.9.0.post0
/nix/store/n97k32kd1dffsp4phzvw431wxhfyxf0w-python3.13-pyyaml-6.0.3
/nix/store/kq0731dd3ac221qzzn5mkqi5qsm78ncs-python3.13-remote-pdb-2.1.0
/nix/store/nvyigw4hkwjsdrhzxx33nlrn5b0mngxc-python3.13-rich-14.3.3
/nix/store/7szlv37z4k1dz4b57h6hjkpv3rgxzbv1-python3.13-rich-argparse-1.7.2
/nix/store/grx6892wf0s7dw1kjx3librplg1cgw06-python3.13-ruamel-base-1.0.0
/nix/store/qa0cja0wgm7408k8z4bj84bx12scnpip-python3.13-ruamel-yaml-0.19.1
/nix/store/jmmdz0vkj4cphlyf6y7gdngm5hfhwisl-python3.13-ruamel-yaml-clib-0.2.15
/nix/store/qk5h6dqi1vkn6la8rvxjixczsly1wxj2-python3.13-six-1.17.0
/nix/store/nnczmpwgabhmy1vf6m8aka6940q7ymz4-python3.13-stack-data-0.6.3
/nix/store/981qasvcd0bc5kl6sn411v3gm549bayv-python3.13-toml-0.10.2
/nix/store/m50vdmm077bnzcwq6nn38zx0cddyr99n-python3.13-tomlkit-0.12.5
/nix/store/4nrcnqz0b0a6x4gv4pn2nwn63a3smxv6-python3.13-traitlets-5.14.3
/nix/store/24lnp6kjbxwj3lw5a1x65qipmmjp04wj-python3.13-typing-extensions-4.15.0
/nix/store/pvvkmvv42s7kiwgymhyl4im853y150ky-python3.13-typing-inspection-0.4.2
/nix/store/12gwm2lik7f59iyan5m7bh5ygpfv8664-python3.13-u-msgpack-python-2.8.0
/nix/store/g6mbrn4by7yhaxg3dyifslvxjwqmphn4-python3.13-wcwidth-0.6.0
/nix/store/irjqr1bj5k2fa5kvwv9fqwq3c4lbz2k5-qemu-host-cpu-only-for-vm-tests-11.0.1
/nix/store/q8kq311rn6m3381j6xximg9d6vy094pf-qemu-host-cpu-only-for-vm-tests-11.0.1-ga
/nix/store/viqr1b2gsdgs7fh6qfmkil026nsx3n3z-qrencode-4.1.1
/nix/store/cmz5hzprw6irnhpmpaxc3rv7wk2x5gx0-rad-system
/nix/store/wa7gfn92v9qvr9wysgi2qm3lh1a93vaz-radicle-ci-broker-0.29.0
/nix/store/px0417x1wrnj03rh67wi271d83l7q14z-radicle-ci-broker.conf
/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1
/nix/store/849i2c2h3wpcsh2hka6bxrbzilg6c9vg-radicle-node-chroot-paths
/nix/store/9sgbr4r91m1xckk433vsaxr3r05s8pkb-radicle.pub
/nix/store/im7mcigg1x2bq9rg7z3h3i26pjmss0c7-readline-8.3p3
/nix/store/qk81xlzyqsn4xbi74xjrz0wlkg6mirwn-registries.conf
/nix/store/rmkgq6sa2lg8a1in2wkrrm7bpr9xb1h3-remarshal-0.17.1
/nix/store/bp8i7rirhh638m7hnasmc1sqy15qkz29-rootlesskit-2.3.6
/nix/store/5m564isgjr0irpa6l4g4jf96k5rypxl0-rsync-3.4.4
/nix/store/k2v9f3y5ghvcg7r84x9cpd8xpaig5dn9-ruff-0.15.20
/nix/store/xh2ymcfx0qcblpvww5n36xganw4hwzg1-runc-1.4.3
/nix/store/jxhk9qsal9q83fcanwx2kbgzy9pwaaa2-runuser-l.pam
/nix/store/s0fgky7z65wqcki5hjn8v8bwy714ry5x-runuser.pam
/nix/store/2bfsfxxm13zakxcc53m69czx18qshzhm-rustc-1.95.0
/nix/store/dcyd3k01988mgcjndnfxbh0qm787jh5j-rustc-bootstrap-1.95.0
/nix/store/h6qd64h25ydxp1gqlm24n13c43d0a0ca-rustc-bootstrap-wrapper-1.95.0
/nix/store/qcpwgd3b95bxxylvb0na4hny75chrkzm-rustc-wrapper-1.95.0
/nix/store/arn0lmmdr33kqiizfy87dijngc8d2wnr-s2n-tls-1.7.2
/nix/store/rdsn7gcxxnbvvms5ljcr8mqqj5g56lis-security-wrapper-chsh-x86_64-unknown-linux-musl
/nix/store/hgkyib7w598plyf70lqfh1i3vh40in10-security-wrapper-mount-x86_64-unknown-linux-musl
/nix/store/0vy45hj90fci9n006kw70mh5b1pyxa3g-security-wrapper-newgidmap-x86_64-unknown-linux-musl
/nix/store/vnf9dl0k0lrjih9qd4ap711h14ky8lwi-security-wrapper-newgrp-x86_64-unknown-linux-musl
/nix/store/5zms4gxns8dfbb0r9vhbs02wx3ddr5yz-security-wrapper-newuidmap-x86_64-unknown-linux-musl
/nix/store/0nx743iqhik8xz930m5fmvcxyb9kh830-security-wrapper-passwd-x86_64-unknown-linux-musl
/nix/store/yfdw919xv3fvrhvyyi356yazb0lk486y-security-wrapper-sg-x86_64-unknown-linux-musl
/nix/store/530drdjsky0x9jw30rygjx53vl1vgj76-security-wrapper-su-x86_64-unknown-linux-musl
/nix/store/l08j0npb3hf5mv08djbw9dx0b0sp38bw-security-wrapper-sudo-x86_64-unknown-linux-musl
/nix/store/gw99wkwd4h114wjlankwq2zz0d3cqv4w-security-wrapper-sudoedit-x86_64-unknown-linux-musl
/nix/store/shflygg30gv5zb5jqa9ilx1m4arsl954-security-wrapper-umount-x86_64-unknown-linux-musl
/nix/store/1wp4y214hwiki841d35wm2q5fhj1jq87-security-wrapper-unix_chkpwd-x86_64-unknown-linux-musl
/nix/store/iz2l07am61yb9qg39bn31axsb984qpqv-set-environment
/nix/store/wz2436xdzq8ilbzliiqqxxbngw5wwrkb-shadow-4.19.4
/nix/store/b2hi5cw9n1pbvw8jrh6ry8jn4j8nhi6c-shadow-4.19.4-man
/nix/store/4gpa4y1s0s1vz6yrqysadvpifxwbqyg6-shadow-4.19.4-su
/nix/store/hcgqddzbkw6w3zhk528mmwh3n0jqfas1-shared-mime-info-2.4
/nix/store/lhsrcbb3ncjjgfvxb59d0bs3pkivbi9z-shutdown-ramfs-contents.json
/nix/store/mcihgd7swciqazqhygblqggmby350rl7-simdjson-4.6.4
/nix/store/vkn3sbjx1mwr8miir649lp0w1hchszcn-simdutf-6.5.0
/nix/store/026dr1aa94hb0gp2pyzjxyvmcgdy5j8d-simdutf-9.0.0
/nix/store/9qhcl1sms7bxa5pcf9k4fj9wvq7fjh1r-simple-dark-gray-bootloader-2018-08-28
/nix/store/xdqnvvzw0443lhs0k8nx3ciia3i7lris-slirp4netns-1.3.4
/nix/store/0n5zm49dlr7vrgzy2065bqqwy0y3dpvg-snappy-1.2.2
/nix/store/yj94ffph8f6g2zn36kky986nk8q0xnch-socat-1.8.1.1
/nix/store/ydg46632kcwa5zg0zb5pynr07rnhf1am-sound-theme-freedesktop-0.8
/nix/store/12cm2m4pdfanj5li94hwxpdfzrfdfngj-sqlite-3.51.2
/nix/store/pfaam25wgs7ls2bfmq8mdqdmnhbk7j2f-sqlite-3.51.2-bin
/nix/store/w1cmsd5kg0jsj76cxj1vgfrsw3gk86yh-sqlite-3.51.2-dev
/nix/store/wg5127w34vks5jixjk5a99636krxmb8p-stage-2-init.sh
/nix/store/pr27j8nm0xl52pq4ylncj9kwjw3b84mk-stdenv-linux
/nix/store/xknwpg5yjxxsffmwdmpys269543wpdy5-stdenv-linux
/nix/store/6lfrlvmyg2dh50zid00d3mr7zpn7dxx2-storage.conf
/nix/store/afkryhd3wfa29958lc3b1fxjxb60zl6k-strace-7.1
/nix/store/67gd1jz8fp4pqb09wws80z9jykx8ykd0-strace-7.1-man
/nix/store/ldixb9i4r4wb5rf00ysx9z642nh7dk1c-stub-ld-x86_64-unknown-linux-musl
/nix/store/3gqdgvxkwbqyhrb34nxndh37aqsancxj-su.pam
/nix/store/1v1hd7hnss1y3d40dkib5x0dqppkadp8-sudo-1.9.17p2
/nix/store/0sbi54dacjmi5grcgwyxz5zhc1pd26bp-sudo-1.9.17p2-doc
/nix/store/6cdh7c9wa8sd3mxc4zap4paqp4ib7mbs-sudo-1.9.17p2-man
/nix/store/c3swnznnarwx8vy6rcxrhz0g4v2450ca-sudo.pam
/nix/store/ylsmb1bpln0fikpl2d453gravhfs3wy8-sudoers
/nix/store/15500fr0qi3zl4b3k58jl676lay3jl4w-system-generators
/nix/store/2gcbx35vf30yyv2ps7i0dhjqvxm51lpv-system-sendmail-1.0
/nix/store/in11q87j703qqzjciqydp1rigik893zs-system-shutdown
/nix/store/1rnlk0fgkq8lqds32akkwzm69q6ybl78-systemd
/nix/store/rd05syhv5v5999907a2n1r37sgi19vpd-systemd-260.2
/nix/store/ngmx6kzlzapwvdp5nw00aibbfn2pmnrz-systemd-260.2-man
/nix/store/z4bbn331gmmjf3qxhnwfkd7ymbvwhflm-systemd-default-tmpfiles
/nix/store/7nvvcdsr5xkn9rmp2cg1cyk2sd6h16jl-systemd-generator-environment.json
/nix/store/rz3ss5filvbbwi9f36g1dw2f95sasqbq-systemd-minimal-260.2
/nix/store/bv90l7ic5p0alcjqlcwmgxf76zx3zg20-systemd-minimal-libs-260.2
/nix/store/sdn0063a2wa95cgw02xpl6aadyy74gwl-systemd-user.pam
/nix/store/k2r54ag8hsyvcyhhi3g28yc1xcnmma8l-tarsum
/nix/store/7d9mb1cxsjpdb6m9hdfg05j1l7pvhkla-tcb-1.2
/nix/store/c8mrrp6s3rjfbqn47ihlicazjabkji6j-texinfo-7.2
/nix/store/j3mbcpbq0k9w523jz8lahkh6a16vx1jg-texinfo-interactive-7.2
/nix/store/k5369naykh8b03hhp48g65xmlb76w8wm-time-1.10
/nix/store/l584clsqkn91q4vs39514dzhsyh7qjwg-time-1.10-info
/nix/store/0gq57nccw15drfrgx9axjs03wl164z9h-tmpfiles.d
/nix/store/fysmdm45psr9inrf9y0i8l1vvxlc1y0w-tpm2-tss-4.1.3
/nix/store/51wviqypjlya8xidz9k0s211gwgjza5j-ty-0.0.54
/nix/store/mwwy6p61xz7rpaalflm71sf21491bcj0-udev-path
/nix/store/xc2rajnxgzp3i3wn18r59rqif19i751v-udev-rules
/nix/store/kh4j2kji7i38viz4h0cf6kbv9fnvhnkg-unbound-1.25.1-lib
/nix/store/2irdcdzd93abyb8v3508dd9ybrpqbdb3-unit--.slice
/nix/store/bwcichvz2bam85hjknmw5fdkn3fbf5bv-unit-40-eth1.link
/nix/store/wx2qm337a02jgkyyhvjjm8q035aspvc5-unit-backdoor.service
/nix/store/r589gqdcimgn6zfwr3jrh7chk2nk7fq2-unit-console-getty.service-disabled
/nix/store/s7ygy8mzvr78zy38ra27gyb28300fwzq-unit-container-getty-.service
/nix/store/7fw1gd917i20ysh9xya4y4hxnamcy58a-unit-dbus.service
/nix/store/j66pv6qwka515g3w5l6cjc67wnm7cjg5-unit-dbus.socket
/nix/store/sdbcf79b3fkvhszw9pgs4i4cmc3xsklh-unit-dhcpcd.service
/nix/store/6v398s27a1al5v1kfvivwfng27fq8xw2-unit-firewall.service
/nix/store/mxvzl22zkz634x5x8yw9ky4yvm1rmxgb-unit-firewall.service
/nix/store/6l71c6239mc0hh7hks1bgr5xn6m2d1fg-unit-fs.target
/nix/store/q46wwj5l7bzq905d53ypgc3bcll7v51c-unit-fstrim.timer
/nix/store/lsyld54b8ivff616xnf9mhyxlgczgmgq-unit-generate-shutdown-ramfs.service
/nix/store/qk9arascdv7gw3c6j7k42bj4524cfr3y-unit-getty-.service
/nix/store/n5b4j979cpdanxjrji3lw8j9p3kyw5sl-unit-getty.target
/nix/store/wafk57mmrrzj37gnv6zckxq4chx0lh4w-unit-keys.target
/nix/store/iv1jr06z57z39kmgnbw4sblch0n99q49-unit-kmod-static-nodes.service
/nix/store/3xccljcxf71qpz02hfri45g6dk0f0shr-unit-lastlog2-import.service
/nix/store/fq1qmdi2751f49k5dzcp74y1x7xp2xhx-unit-linger-users.service
/nix/store/669mx4s73gzklmr9w3s13vv24kl1wlg8-unit-local-fs.target
/nix/store/s9p17945lg23b3fm04vkfzr0ml6ygjhw-unit-modprobe-.service
/nix/store/kyi1a5ab8zrvybmfbl1xnyzr84q4kiwa-unit-multi-user.target
/nix/store/asnkwxzwnfkfp98hwfqdf02v6jyg78m6-unit-network-addresses-eth1.service
/nix/store/bcak5zv06jj3wxjx5f6sgwwh4k7nac7q-unit-network-addresses-eth1.service
/nix/store/24q19kcbv01kcmpc7ng9lh004pwrdxds-unit-network-local-commands.service
/nix/store/dffhwy5x0zn279wdyjx4na7dvgvhvanl-unit-network.target
/nix/store/ca9znjh12i6z67vy3blhkybdkdncq6az-unit-networking-scripted.target
/nix/store/lz45s33qd8zasqhkgm10anax445zb82h-unit-nix-daemon.service
/nix/store/bl8v0h6s2b1kvrbknzgj0ha4046mm7bf-unit-nix-daemon.socket
/nix/store/721yndjmxqxva32v9a1lvgmx10ywgppz-unit-nix-gc.service
/nix/store/b7ry4707xckgvszqq5f31cn102wnkk7d-unit-nix-optimise.service
/nix/store/nj0f0cymxz2wanlx67f3yx81fzk3kaj7-unit-nixos-activation.service
/nix/store/w6i3b2zjby3v7bm16kjzg0gvb1cglhpb-unit-nixos-fake-graphical-session.target
/nix/store/gamviprc6sy15nc2v9mm2wkx2hfk42jq-unit-nscd.service
/nix/store/9ypz1lyj24ywa6vi7rmf515rf1kcn6r1-unit-podman-prune.service
/nix/store/bvy3adpa63azxqa2cawki1rjkaiy6r2v-unit-podman-prune.timer
/nix/store/qnlnb5y2rqri7wff18dkisyndim6ldzv-unit-podman.service
/nix/store/azrl6vzchylygh5y93cv348qaayf306r-unit-podman.socket
/nix/store/gkxbhi6pmfm54wlgi9yplkk09lhzj2yv-unit-podman.socket
/nix/store/inv9yggx2yqgqi8lydpdqckjzwbsr4rv-unit-post-boot.service
/nix/store/ykh6mn37zb6xkab174rrcl29kkcbil3v-unit-prepare-kexec.service
/nix/store/jmzlqhxzrrfv0aqzv00aaiq80y8mxw40-unit-qemu-guest-agent.service
/nix/store/zijc5ahmwjc5jki6wkwqncp1p09n81xw-unit-radicle-node.service
/nix/store/gqhvqkdj31p4dfbwmsavszas62ri11zd-unit-register-nix-paths.service
/nix/store/irgz87ixj6hwa7xpmjd88pfqlxzwgy6i-unit-reload-systemd-vconsole-setup.service
/nix/store/k82qcnzy95a4ndwxliv362986fxz5f6v-unit-remote-fs.target
/nix/store/x34rk37kjqfcg4pkljqnm2z3x360vm7d-unit-resolvconf.service
/nix/store/z3g3na0b16536a212sy9wl1nw2wgj6zl-unit-run-initramfs.mount
/nix/store/aisrpa3qara3yh5k69zmhb5mvdydpd0q-unit-run-wrappers.mount
/nix/store/33bga4n11slm9fpy1aqgp89iqsfkpcwk-unit-script-backdoor-start
/nix/store/mw1i755nkrasii8qkz3zn1v1k18h00zw-unit-script-linger-users-start
/nix/store/gymvprlk8acqgjhnm7sgy2gg1m8qq56r-unit-script-network-addresses-eth1-pre-stop
/nix/store/vj3simc82snai3riydajn15ad31vlgjp-unit-script-network-addresses-eth1-start
/nix/store/yk07p83rx0rdp2q7r4lxqfs4b9ylhs19-unit-script-network-addresses-eth1-start
/nix/store/ghaf19icid0ys1m6x7g36vkgpkkkfbgn-unit-script-network-local-commands-start
/nix/store/7v24z1mjp37k8lyg0vb45q27k2bl3i63-unit-script-nix-gc-start
/nix/store/xhsvjhdvpwibx6zd3lc398qnrxq7j0cr-unit-script-nixos-activation-start
/nix/store/8ddvy2zhj60rch79sfx2b6snnwmgizgi-unit-script-post-boot-pre-stop
/nix/store/0hgirfd8sn1kbbg8b4hr31myhvc0r414-unit-script-post-boot-start
/nix/store/m6f9z0z77y9ighm80fj6q7jd6w7619yn-unit-script-prepare-kexec-start
/nix/store/q99kfjrcg0xfs6yns53a8bs1q5d8jiaj-unit-script-register-nix-paths-start
/nix/store/di4wmka9b1bjvrqfb2cp58zhg0vq9jaz-unit-script-resolvconf-start
/nix/store/svlrdldyivj4wzl56c3ql1sn0j4qwdh8-unit-script-sleep-actions-pre-stop
/nix/store/5h2mvb7i7wjs4ras4pd5g2g8vp0wgv5z-unit-script-sleep-actions-start
/nix/store/2ahkwinba4kcs5d96rv3jd4n3l2mn9gi-unit-script-suid-sgid-wrappers-start
/nix/store/cmcij69qjm8afvnnnr2rwjaqavbm4k6r-unit-serial-getty-.service
/nix/store/mhdnwqp3havycfnkqc9s101jspy30yy8-unit-serial-getty-hvc0.service-disabled
/nix/store/9hx1vf28gb72hiwszbgjwa2898rcgv6b-unit-serial-getty-ttyS0.service-disabled
/nix/store/njqx4j4zvsg9zkh1p7bik5hda2n4sxw1-unit-sleep-actions.service
/nix/store/yn2vm2chck2vs1rs2dsc5kvp80gbwbc3-unit-suid-sgid-wrappers.service
/nix/store/614lnzzpc61gzcwa4ar5m0n8p3jrzb8w-unit-sysinit-reactivation.target
/nix/store/1pjkklppppvd8lgc1vc4smzh080g7xmf-unit-system.slice
/nix/store/nllp43fickjfbvpimxldmalyn1q7w6qg-unit-systemd-backlight-.service
/nix/store/233flrcl5m97hd6vdnm3wwxdqlraix8i-unit-systemd-fsck-.service
/nix/store/avclk6x7dckj809d5gpbl40qcsvjv31q-unit-systemd-hostnamed.service
/nix/store/f35mzxsdn8zhqahdl4y65325cvl2xyik-unit-systemd-importd.service
/nix/store/4qsv8i6sdppdrjzzwm6hy8rw28vlkzzw-unit-systemd-journal-flush.service
/nix/store/wc9kmqqjxdnjc88sibr8hnarxza5kl06-unit-systemd-journald-.service
/nix/store/2d6j2bp0bj4kwilf2rnc1xgl6madcv34-unit-systemd-journald-audit.socket
/nix/store/n5jr5202za9byvsw82crb0kchd8k4mw1-unit-systemd-journald.service
/nix/store/1i22ja9szfc3p48dnbgxwwihkn6hx7rr-unit-systemd-localed.service
/nix/store/22j9nah99c4waqa20bswypa0121mmrfp-unit-systemd-logind.service
/nix/store/a6qh6p60fbks27fnx2w817j4sq1fybbz-unit-systemd-makefs-.service
/nix/store/jxir0k6jglqwyiw769rhh1m2y4cmpdas-unit-systemd-mkswap-.service
/nix/store/4y13djg1sm7qzipnhdsqczb18v92r79k-unit-systemd-modules-load.service
/nix/store/vw1qbvdlql0gnw0d259k4pbqyv8gdgi8-unit-systemd-nspawn-.service
/nix/store/wnh3v1xplga40sfw1x4g3jvwkzbrhla5-unit-systemd-oomd.service
/nix/store/zdfynwzl3msa6h1ca1imv2al23zlmf5g-unit-systemd-pstore.service
/nix/store/yrvnq5hghgzsi7z1wyq3dy5ic5cnjngv-unit-systemd-random-seed.service
/nix/store/fkvv7gncyrlxdxxzb7l925vakrc4fl88-unit-systemd-remount-fs.service
/nix/store/pxslxn3rmz0xmbvlnsyp0z7rd2108h0y-unit-systemd-sysctl.service
/nix/store/zw28mink4kbibfp12z68vxa3jss3zgqy-unit-systemd-timedated.service
/nix/store/pc0fnz5hpdphabj6raz1s3xhg925cjhc-unit-systemd-tmpfiles-clean.timer
/nix/store/395xldm7zib0vjampmwydy7rd9l8s0a8-unit-systemd-tmpfiles-resetup.service
/nix/store/s1bjcna8pn09jv2y05iiknkk7423h97p-unit-systemd-tmpfiles-setup.service
/nix/store/8dns3yz1kag62837hjwpydx12nxfrzbl-unit-systemd-udevd.service
/nix/store/c4pv3p982vp80llja43vzvs0xdjgcf2l-unit-systemd-update-utmp.service
/nix/store/ld180ycjhxw5dx1nz4ac7304mkkl9jmr-unit-systemd-user-sessions.service
/nix/store/38brv4nfqqr4gq01hazpbsmws9snk6wj-unit-user-.service
/nix/store/fxvsi32yfcvsls6cjb6hg09ipaxqf2jf-unit-user-runtime-dir-.service
/nix/store/hhgsyka8y2j1ay19pdiqyxa3jrkvzjnr-unit-user.slice
/nix/store/iymsdj1yqiy7d8pylqvjqxqiqb9lqq94-update-autotools-gnu-config-scripts-hook
/nix/store/j8rd1874qg0k0gpf855b8hipvp5qx0rp-user-generators
/nix/store/0bnyx77837hyyixjg7jxjwv6klkcyc52-useradd
/nix/store/bjzp3s04066hlxys61x4aww4x9lyjzwn-useradd.pam
/nix/store/wnc2r85qlklapq032cybg3l2xdrp06wm-userdel.pam
/nix/store/0yzz5gy7ynj4wpm81vqgidfngqk1iq0k-usermod.pam
/nix/store/xaap0vhf6fgh19zg3hcdjqbb3n7nwfpc-users-groups.json
/nix/store/jcayvijkha808wgm32csczn7hh8a7c1n-usr-bin-env
/nix/store/c2ndp3f1lxh38zp3ydm85qb52rcw97dn-util-linux-2.42
/nix/store/qjs15klpvpwz64pjdspy3mln6d54pd8f-util-linux-2.42-bin
/nix/store/krdknpfx2cz2jxg1xp223zyy8h2l7laq-util-linux-2.42-dev
/nix/store/r36mwd5l0szp5mwmlyfkabdbmd84ad6s-util-linux-2.42-lastlog
/nix/store/vf5xyym3j82vx9fgb109q5gi7m983x1m-util-linux-2.42-lib
/nix/store/l9ra4yk5khapd0cwi1q6djx7j9zzi232-util-linux-2.42-login
/nix/store/79qcw9avkg62pr3qkb2rgrdrs4axh41v-util-linux-2.42-man
/nix/store/qq3x890gwa050lidi6zyxklrr3rbpxdl-util-linux-2.42-mount
/nix/store/bb8bj6354lfp5m0141dh6brmf1v1cxcg-util-linux-2.42-swap
/nix/store/apkal2g0cs3lkaq6br4gc1k67n4q3mgb-util-linux-minimal-2.42-bin
/nix/store/nvzf6a62pyd9fsddawhl2dwhm7sjcby4-util-linux-minimal-2.42-lib
/nix/store/0qdnzsvkajxygnx9i70dbg6bfn1mf23f-util-linux-minimal-2.42-login
/nix/store/z74r1zh973778fv1sva38rabypxcnmdg-util-linux-minimal-2.42-mount
/nix/store/kkp6pf5apw5m87cs5xi990pgrm0dnr8c-util-linux-minimal-2.42-swap
/nix/store/2z5wwsf8bfjslgf53p4z208sb75h3x7b-uvwasi-0.0.23
/nix/store/sa2dgrpxj4w7wvkdij7mslrays3ij3w9-vconsole.conf
/nix/store/s7yxm6mq44r8n1j735mb68wp4cngf2l2-vde2-2.3.3
/nix/store/b0hccb3ymxnjnlam3km2rw4inkll7dal-vhost-device-vsock-0.3.0
/nix/store/g5dzkbnm7n8b61fbdv1x32b24lyhshq2-vlock.pam
/nix/store/y8h7c2g2n541znib07aaplpjhqjr9j8k-which-2.23
/nix/store/nhxyj64bd4a60ymgb0naxcmmrjkqiddx-which-2.23-info
/nix/store/r235qy5rk92frykykazm1smdqcirn22d-which-2.23-man
/nix/store/xljjnnfq7fc5dcfvq6ypvqwnv12d2jx0-xauth-1.1.5
/nix/store/qi5wng9619p1nvyb1gxcj8v899s3m814-xdg-user-dirs-0.20
/nix/store/5g7ysnh54d3rqnyvqdjfp9gbs5x0kqny-xdg-user-dirs-0.20-lib
/nix/store/18ygd63lrpv4a4blpkxvm9xpvbbilkdd-xdg-utils-1.2.1
/nix/store/aw8p9pazyyqp29lgypb7gc305k09c1f7-xfsprogs-7.0.1
/nix/store/4w6srbi141k99pyrp2bfmz98q1f4fkvz-xfsprogs-7.0.1-bin
/nix/store/9jldf06m633n9851m82mcyhibmgczkaz-xwininfo-1.1.6
/nix/store/q2498iin9z3108vxca244k95z928vigc-xxhash-0.8.3
/nix/store/y5zljns1fbcdgh5pp1szjlw0j11xxvcy-xz-5.8.3-bin
/nix/store/k64v26c6q0qb6mhdbdhsxk5mazlqp3il-xz-5.8.3-doc
/nix/store/wx10pwf5g5fi1vwb1h74ncjlfmdsrvrq-xz-5.8.3-man
/nix/store/005vc6ida2vf8phfck6l9yny6id93wil-yajl-2.1.0-unstable-2024-02-01
/nix/store/a9psmsc93llkravrd50rrv8k3dwdw60x-zlib-1.3.2-dev
/nix/store/7y3nkp1ygncjr2gbyxc3lj4zim1m7qnz-zlib-1.3.2-static
/nix/store/61vdbwgyzh74vh4q8c89gzqyzdyd29hx-zlib-ng-2.3.3
/nix/store/gxxyccld1qfy1v98hbzv8g9yk1saqx82-zstd-1.5.7-bin
/nix/store/901v08c2caadg21jidzpy00d3lzjgrdc-zstd-1.5.7-dev
/nix/store/1b2phk81syp3chqny7m713295rg519v6-zstd-1.5.7-man
copying path '/nix/store/zh1ijdhb6gng1509b1zrilb6xlzx60j6-bash-5.3p9' from 'https://cache.nixos.org'...
copying path '/nix/store/cdd73p8qiphg0scs02i6lrg1sjsdvbkx-gawk-5.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/4i7gvqwiq5mbl5pxh43frzq2nibxvwb5-gnu-config-2024-01-01' from 'https://cache.nixos.org'...
copying path '/nix/store/08nfpyc4qhzdkc37nznvfpbybihyr063-attr-2.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/lc20sfvskz0my6phs73nmsnlrxp06kgb-bzip2-1.0.8-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/ybmzybab5jpd6k6ij0pchn4jn6jlczlg-ed-1.22.5' from 'https://cache.nixos.org'...
copying path '/nix/store/aagixdk8hcs7p107szv9z17p87mx33nb-expand-response-params' from 'https://cache.nixos.org'...
copying path '/nix/store/y1fmsp7vhpdaclpqbsgm2qyl7yixx4ci-file-5.47' from 'https://cache.nixos.org'...
copying path '/nix/store/i4jf7w00lr5q85r55rc35n83l7iwys73-gnumake-4.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/0hamsiy8hsyfw1hmizbc3bf93ad7fa1v-gnused-4.9' from 'https://cache.nixos.org'...
copying path '/nix/store/1hrk7xhpm6h98n0lg1qixfrr2kb96zqs-linux-headers-6.18.7' from 'https://cache.nixos.org'...
copying path '/nix/store/jbav217344pndjbghzyjmh0mkzy1973i-patchelf-0.15.2' from 'https://cache.nixos.org'...
copying path '/nix/store/y5zljns1fbcdgh5pp1szjlw0j11xxvcy-xz-5.8.3-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/521dd0054ifhzmjfmpx9mz0hr7wh7sig-glibc-2.42-67-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/rfabfsmwq02sn94mb3qg9jwvxbqfwmsr-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/x2zjc47pkhcwxr4iyv5xj3hdqfzfnyd9-pcre2-10.46' from 'https://cache.nixos.org'...
copying path '/nix/store/dy22jzjikspk0v1pf1yvlvvffncnn0g2-55-nixos-aslr-entropy.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/j7br92ry2mzycg5h33sri8q765ahmwjr-X-Restart-Triggers-dhcpcd' from 'https://cache.nixos.org'...
copying path '/nix/store/9xxaaafivbqzdz5ijyhbyyqnlb8i1l5g-aardvark-dns-2.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/i8qm43nyb1nh4fizbwr5dd3z8a0grnxa-acl-2.3.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/x0zgiss9hdzcsll3cswgfa937aqs12rq-acl-2.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/d39yxmbcqm0qzkrk9ifbsabhl7qg6n69-acl-2.3.2-man' from 'https://cache.nixos.org'...
copying path '/nix/store/wjrhknj0z96089brz54cnzbhxdlyxgpq-attr-2.5.2-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/pjfkvyg76yfjlcxfj3f5iq0rj1siv62m-attr-2.5.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/h69k863p9xpsgas628rslmwfqd4h92kq-attr-2.5.2-man' from 'https://cache.nixos.org'...
copying path '/nix/store/gwh5pxnk9c2kh8h61cny2104a8js9lbs-aws-c-common-0.12.4' from 'https://cache.nixos.org'...
copying path '/nix/store/8rx50z8s7d55j2pyh46fz1d58k1fbrjr-bash-completion-2.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5j2akpmlk107gzdqkms35r3nwhkwnibh-bash-interactive-5.3p9-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/p5nar9b6naimw250569xr7xm8rxschkw-acl-2.3.2-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/pspjmjsphdkjsi20gpxh2p1aq6p73n1c-bash-interactive-5.3p9-info' from 'https://cache.nixos.org'...
copying path '/nix/store/b67fr4nba948zxxpmdsnzqr06l9fnnag-bash-interactive-5.3p9-man' from 'https://cache.nixos.org'...
copying path '/nix/store/5n0q5i7j3i6llbcbq1l9xrs2ny7aqvsw-bind-9.20.24-man' from 'https://cache.nixos.org'...
copying path '/nix/store/y4h9ak6f3z22hvq97jwh90lmc4agx28c-binutils-2.46-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/53zj9vfwqsqa87dia0vnwn5n1xz1h569-boehm-gc-8.2.12' from 'https://cache.nixos.org'...
copying path '/nix/store/y574lyg1hs7zy43v5q255fz8xq0qp3wf-brotli-1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/b1lyn1hdqrr25d58chjxnbxsrvv64js7-builder.pl' from 'https://cache.nixos.org'...
copying path '/nix/store/a48z5j76wm1n36yq87hsxh3byf2zq4h1-busybox-1.37.0' from 'https://cache.nixos.org'...
copying path '/nix/store/hd4gg5ps1i4yc1b0lzr786vm9l7ii422-bzip2-1.0.8-man' from 'https://cache.nixos.org'...
copying path '/nix/store/2xfxv5d6j19nqlxaqpxvrd5y28j8x3x4-c-ares-1.34.6' from 'https://cache.nixos.org'...
copying path '/nix/store/vr1j1sr76ayl3r4j99b0bdl3mcny3ha5-c-ares-1.34.6' from 'https://cache.nixos.org'...
copying path '/nix/store/z1wq82v5y815qb41ias7j6ddi859z0md-c-rbtree-3.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/xmmxg0vbkvampcsz2rp792nj0s65iv5r-aws-c-cal-0.9.2' from 'https://cache.nixos.org'...
copying path '/nix/store/h4ardg95sqm0rhm66hhnswszlmcbfng9-aws-c-compression-0.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/55b7xlh5df20di6q2vi8xh1k8wzvxhn3-aws-c-sdkutils-0.2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/644xx605fcrcv8nwxljbbfvjihnp2d6r-aws-checksums-0.2.7' from 'https://cache.nixos.org'...
copying path '/nix/store/zfyzxlf7ln05zgwpywliwlir9r20510a-c-shquote-1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/3s4k5rll7n8bwpmk7v86q32b85b3n6pk-c-utf8-1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/i2ysxjbmgd77qmrrv2s1qhxnwbjisi2k-capstone-5.0.9' from 'https://cache.nixos.org'...
copying path '/nix/store/8j0ipc0lmgbjl1fpj764wj86i8bq58bh-catatonit-0.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bihf75h6irqz02v22wjy64n07hqhdwrc-cni-plugins-1.9.1' from 'https://cache.nixos.org'...
copying path '/nix/store/pcq77h5mhc5nfvf1rs92a5l5g0kaapdg-brotli-1.2.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/39lyf5g2iz4jd2r6q4g5whk9vw09zglj-binutils-2.46' from 'https://cache.nixos.org'...
copying path '/nix/store/0gjgzxznqxwjgi7gxz9p8ahl8yl8a111-config.json' from 'https://cache.nixos.org'...
copying path '/nix/store/h2xv6hcj8bxldvbd1qfrhps8p3xw5sb1-config.json' from 'https://cache.nixos.org'...
copying path '/nix/store/0gr13av5discrw3ffn20bay1spv2c7h4-c-ares-1.34.6-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11' from 'https://cache.nixos.org'...
copying path '/nix/store/xgqww6fdbdpkmh1gffhxjhd5bwwnf0hz-coreutils-full-9.11' from 'https://cache.nixos.org'...
copying path '/nix/store/6bqbv6gxvagfkky5c010rvf84vm4l7yh-coreutils-full-9.11-info' from 'https://cache.nixos.org'...
copying path '/nix/store/bbfrw9pncsp5pvybrfp26swb93vy8f9g-cpio-2.15' from 'https://cache.nixos.org'...
copying path '/nix/store/83izyxvw00pqxi3dxlq81i15957z7wyp-cracklib-2.10.3' from 'https://cache.nixos.org'...
copying path '/nix/store/w36yf3psz1zhgabw03hlag8bw0rdfsav-curl-8.20.0-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/nc4k66gifdindka1a5fs15f450d269y4-c-ini-1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/nwpiyrf0dxk776ysb6jkfwcvmfsa4sdx-curl-8.20.0-man' from 'https://cache.nixos.org'...
copying path '/nix/store/df7hisry2sni9b7dx84df75m3mr15idz-curl-8.20.0-man' from 'https://cache.nixos.org'...
copying path '/nix/store/8kmlxnyp4wbvxwxi3bjafcsr2x8bdljf-c-dvar-1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/2yzrnybmshv43hh22bbfcn0nhj34yghp-db-4.8.30' from 'https://cache.nixos.org'...
copying path '/nix/store/p5rsh81l7fl9dr3cs0j1fgrlb49rlcxx-db-5.3.28' from 'https://cache.nixos.org'...
copying path '/nix/store/fx9ayjlgw4nn5vb28dfkqpkk2dmw41b9-dbus-1.16.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/v0c292r3lsmnkmi8jnhb0z73yak8fmr2-dbus-1.16.2-man' from 'https://cache.nixos.org'...
copying path '/nix/store/py2xh8hk2dbvgflrmgc6xfnml504ybwx-dejavu-fonts-minimal-2.37' from 'https://cache.nixos.org'...
copying path '/nix/store/xdf96mph7jk2min6z8kp3kslb0i6dv41-dhcpcd.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/yrh4w2vvnq13mi3wlk8rkpf4hz61r55n-die-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/vajbg82rq4kq817ic61azz8z5363dy4c-diffutils-3.12-info' from 'https://cache.nixos.org'...
copying path '/nix/store/mbbchsqa44gcx16skf6v6c6bqiayamc9-dns-root-data-2025-04-14' from 'https://cache.nixos.org'...
copying path '/nix/store/3c05s0vxy8wafaa7lkj4bfh69wa0ch10-diffutils-3.12' from 'https://cache.nixos.org'...
copying path '/nix/store/cwmgn95y2w2ljqcyfkw5hhaha0243r6y-docker-buildx-0.31.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/60kx0zqfamh8w62x142sc201z71qdr2r-docker-containerd-29.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/6gs392xlrviq6npb3vbp6n4w5fp7cg87-docker-tini-29.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/alk10nwqax99k8cbrpr4vwkakq9a7sgj-dosfstools-4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/46ylyjhkaxnk8ywcsnzmac9axczsgkcj-dosfstools-4.2-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/mccqiz1j8ri2zm814l1hi0p4p3yb44l9-dosfstools-4.2-man' from 'https://cache.nixos.org'...
copying path '/nix/store/f0xdxfpkx13k9zx7z6yild02bb9adpjk-download-base16ct-0.2.0' from 'https://install.determinate.systems'...
copying path '/nix/store/0m5dfa9w6dl91hngiqs2bn21l0wds12a-download-base64-0.21.7' from 'https://install.determinate.systems'...
copying path '/nix/store/4ypdmgy1f4q3g21p0x4wis52kcxfrr2c-download-base64-0.22.1' from 'https://install.determinate.systems'...
copying path '/nix/store/yps3x419yn3sfb7jyl0vs5a51yvg8xha-download-block-buffer-0.10.4' from 'https://install.determinate.systems'...
copying path '/nix/store/8xdsvdrzhxi0zhjmiq9glhj53ad7297s-download-byteorder-1.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/z140rialh9rsqx76d1ij2cji7v87q55y-download-cfg_aliases-0.2.1' from 'https://install.determinate.systems'...
copying path '/nix/store/6gsv82wm87sncislcalpq2fws14sw00c-download-const-oid-0.9.6' from 'https://install.determinate.systems'...
copying path '/nix/store/i3wan3dksjh6hcddbb5ykxvsf33r0zjy-download-cpufeatures-0.2.17' from 'https://install.determinate.systems'...
copying path '/nix/store/7ds83nnhjh6m9ghpqc8p9i6nwrsfpgd1-download-crypto-bigint-0.5.5' from 'https://install.determinate.systems'...
copying path '/nix/store/pmdjh642579k2kd3v5l8aw4bjl4id6zc-download-digest-0.10.7' from 'https://install.determinate.systems'...
copying path '/nix/store/v1lvpv10yjifyrwb3lnhwkv6n9smb7vf-download-ecdsa-0.16.9' from 'https://install.determinate.systems'...
copying path '/nix/store/83154farcw0iq5ilknngch0qvnm3cgcj-download-elliptic-curve-0.13.8' from 'https://install.determinate.systems'...
copying path '/nix/store/15r5x7zclgi1ash0q48dbs3pggjxf6k5-download-encoding_rs-0.8.35' from 'https://install.determinate.systems'...
copying path '/nix/store/p3vbck2kficnr1ybbz0gg96x9v23k0ll-download-equivalent-1.0.2' from 'https://install.determinate.systems'...
copying path '/nix/store/b0v51a7ak8j8llyqyq8kkc940fw7kb0p-download-fnv-1.0.7' from 'https://install.determinate.systems'...
copying path '/nix/store/x48kfgarf3bfzx4zjm4hiifgsyg1b5d1-download-generic-array-0.14.7' from 'https://install.determinate.systems'...
copying path '/nix/store/39f89l131blg1ybz901vgj9ai0ldlav0-download-group-0.13.0' from 'https://install.determinate.systems'...
copying path '/nix/store/jasyk1nmvqrycx58q9zb8gx9pgh6my2c-download-hashbrown-0.14.5' from 'https://install.determinate.systems'...
copying path '/nix/store/xw534gcvwf3bjmprvwskgp2yfp8xfcgx-download-heck-0.5.0' from 'https://install.determinate.systems'...
copying path '/nix/store/2n6q8b4gadj06nq5dlm4dyqxg0zavwhd-download-hmac-0.12.1' from 'https://install.determinate.systems'...
copying path '/nix/store/g4nsvl3r9psn5i5m3ahpa8wq1wjvzn7n-download-ident_case-1.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/81isja5rdp4bkdc5gw43d0ihj4zf03d6-download-lazy_static-1.5.0' from 'https://install.determinate.systems'...
copying path '/nix/store/lpsrdwfrdj7mfa7408dmwg7mai1a1qb4-download-mime-0.3.17' from 'https://install.determinate.systems'...
copying path '/nix/store/7cvsr1sbp08f30v2jys7jibym2sbaycx-download-mime_guess-2.0.5' from 'https://install.determinate.systems'...
copying path '/nix/store/yx7mmh2qi0sy9alkv625ma1lpq0bb3ng-download-minimal-lexical-0.2.1' from 'https://install.determinate.systems'...
copying path '/nix/store/aibr4pfrbayp1lw5f05zy5azly88i9vk-download-nix-0.29.0' from 'https://install.determinate.systems'...
copying path '/nix/store/07z9skpwnp95ghy9gxi3f51kklmfanzp-download-nom-7.1.3' from 'https://install.determinate.systems'...
copying path '/nix/store/0d4l910v06bh3h90dk0z8858xq8mwgqw-download-num-integer-0.1.46' from 'https://install.determinate.systems'...
copying path '/nix/store/7bav9k47fz3k4g0cilnlp22z71zrhm23-download-num-traits-0.2.19' from 'https://install.determinate.systems'...
copying path '/nix/store/fh6lszch0vrih11y27rmpjnqfq02mnpd-download-num-iter-0.1.45' from 'https://install.determinate.systems'...
copying path '/nix/store/f5zjchs27mdjbky8madfcm2ad2wl600v-download-p256-0.13.2' from 'https://install.determinate.systems'...
copying path '/nix/store/7170ra2y2a9ksby3m1rg8pann3hp96a4-download-pem-rfc7468-0.7.0' from 'https://install.determinate.systems'...
copying path '/nix/store/m1dw0047wjm3nsbylqysxg6cfmd6pjpz-download-pkcs1-0.7.5' from 'https://install.determinate.systems'...
copying path '/nix/store/3fgz5lzgfkfb8mwkckj7996d3nswf1c1-download-powerfmt-0.2.0' from 'https://install.determinate.systems'...
copying path '/nix/store/x3b0r92js27krx9mivigjazv8fgs55av-download-pkcs8-0.10.2' from 'https://install.determinate.systems'...
copying path '/nix/store/hz6nah8gmc3450njryrfalicsxx374i9-download-ppv-lite86-0.2.21' from 'https://install.determinate.systems'...
copying path '/nix/store/pjv42h7s82kaq2m5231vz82p3isgjpkd-download-primeorder-0.13.6' from 'https://install.determinate.systems'...
copying path '/nix/store/9fmm2xxjzn6bcssqf96sq9zxm4i9pzb7-download-rand_chacha-0.3.1' from 'https://install.determinate.systems'...
copying path '/nix/store/6gg6jvnzhh8i4pml75n9cg4ngk9bf79h-download-rand_core-0.6.4' from 'https://install.determinate.systems'...
copying path '/nix/store/zhxidx5i2y0mn450f85dx5bj4aa1kwmk-download-rfc6979-0.4.0' from 'https://install.determinate.systems'...
copying path '/nix/store/p68ch5qbwr45ppb9hsrqc82lfm71v9zm-download-same-file-1.0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/v0qkm7di7irz82i41bhm3rhxf7yzg8na-download-sec1-0.7.3' from 'https://install.determinate.systems'...
copying path '/nix/store/j0lzzjf7ys3vbfp27qvaq46diw711g4f-download-serde_yaml-0.9.34+deprecated' from 'https://install.determinate.systems'...
copying path '/nix/store/269ycmdm2a9i5lg29cmkbnl1d385ss0l-download-sharded-slab-0.1.7' from 'https://install.determinate.systems'...
copying path '/nix/store/zjlmh5b5bpa2pyhw2b7w77qp4caahzkz-download-signature-1.6.4' from 'https://install.determinate.systems'...
copying path '/nix/store/jznqsamg4kqbla1wafxmmyn2kl8r42q0-download-spin-0.9.8' from 'https://install.determinate.systems'...
copying path '/nix/store/i9108jvnysslzqcljik72rv5g0qzx0gp-download-signature-2.2.0' from 'https://install.determinate.systems'...
copying path '/nix/store/jyk5ln0hnvfmhwqrfq761zy08lxbx9vv-download-spki-0.7.3' from 'https://install.determinate.systems'...
copying path '/nix/store/pw7qp21a5jwwqvg6y4iv8ivbgihxs569-download-strsim-0.11.1' from 'https://install.determinate.systems'...
copying path '/nix/store/s381yxshdinnf54nsn425klp36q57gbf-download-subtle-2.6.1' from 'https://install.determinate.systems'...
copying path '/nix/store/f4q02q3hjrgxalr881kf20c8jis1zbhi-download-syn-1.0.109' from 'https://install.determinate.systems'...
copying path '/nix/store/a30mhsdfj36ih187xmjz9nz8bpgs7757-download-thiserror-1.0.69' from 'https://install.determinate.systems'...
copying path '/nix/store/1y122601ddl6wyzzk9nzhcfn9npw33vz-download-thiserror-impl-1.0.69' from 'https://install.determinate.systems'...
copying path '/nix/store/gi86b6fbyb7vg8pq3szxr9csalnnf3hn-download-tinyvec_macros-0.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/8z8mz7hbhz304a49b51xnjc03180k82r-download-tracing-log-0.2.0' from 'https://install.determinate.systems'...
copying path '/nix/store/p727fbdzz96g8mpnh9jdblxrqfc1rklx-download-tracing-serde-0.2.0' from 'https://install.determinate.systems'...
copying path '/nix/store/sa4r5nafac671swaw5k7b6xmpya5r1g9-download-ucd-trie-0.1.7' from 'https://install.determinate.systems'...
copying path '/nix/store/7y7jmihjys57bbr3m7wcqd5k49d2wgrn-download-utf8_iter-1.0.4' from 'https://install.determinate.systems'...
copying path '/nix/store/9mccwi4yvqd1gi54kiq30g1872k4wxg9-download-unsafe-libyaml-0.2.11' from 'https://install.determinate.systems'...
copying path '/nix/store/pgdac5wva6ffaqfdpdqhixyg30kma1p9-download-utf8parse-0.2.2' from 'https://install.determinate.systems'...
copying path '/nix/store/hjncln4an453z9h2imszzk4r615mnbqc-download-valuable-0.1.1' from 'https://install.determinate.systems'...
copying path '/nix/store/cvl95hld5w3nvdqyx0svv89dkalrcvir-download-vcpkg-0.2.15' from 'https://install.determinate.systems'...
copying path '/nix/store/mh4hjf46s2jzbis2gm6si8s9nc2vphfk-download-version_check-0.9.5' from 'https://install.determinate.systems'...
copying path '/nix/store/dlj46kkv658ja3zpcb6v2fngg2lgqjqc-download-walkdir-2.5.0' from 'https://install.determinate.systems'...
copying path '/nix/store/c2544w6y49p6x1yr9z2ab2mvdskqpinf-download-winapi-0.3.9' from 'https://install.determinate.systems'...
copying path '/nix/store/8fznfx94dhv1vywgs2ciw6rvd42axbph-download-winapi-i686-pc-windows-gnu-0.4.0' from 'https://install.determinate.systems'...
copying path '/nix/store/ffgdcqvdd33n2j79s06ki7g9cdv51mmn-containers.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/1n3wd9zpybzlj12sxp8npa0km6mwxbbp-download-winapi-x86_64-pc-windows-gnu-0.4.0' from 'https://install.determinate.systems'...
copying path '/nix/store/i1afhizcy5p17pdhsl5kvibxnlaj73qp-download-windows-0.48.0' from 'https://cache.nixos.org'...
copying path '/nix/store/57274dngjf7l4k7wbgkx7dda9m3wyzzg-download-windows-result-0.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/x1f5ampbshiyjq2zhz14qa58pyxq9dmp-download-windows-strings-0.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/wzpggp9jii0ja93hbjxspaw5mp8g3q1q-download-windows-sys-0.52.0' from 'https://install.determinate.systems'...
copying path '/nix/store/8x131vqc7bbhikz30mjpg8yh3nq66ldn-download-windows-sys-0.59.0' from 'https://install.determinate.systems'...
copying path '/nix/store/82zk43fbqrx10k4gzh011jgqh4mvgr8b-download-windows-targets-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/l9a58xm3pnvwj8hpznwlgj7sg3i6hr4l-download-windows-targets-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/brb0vmnzxzg9mbixqygid882j37n1y1r-download-windows_aarch64_gnullvm-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/5qfwz5wkcnpnfdlriai3mjx99i46xpbm-download-windows_aarch64_gnullvm-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/5xzng93y5i7hfnlpsh9c0c6bc9ixbfbm-download-windows_aarch64_msvc-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/d8ahrc27ymzdpsi9d11179w6z9cgzahq-download-windows_aarch64_msvc-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/zcn23yf7i7s8mqjkpyrmgpxxksgyzfh8-download-windows_i686_gnu-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/r8r2jvnd2ig4kr80jzn22vzyawc6zdnf-download-windows_i686_gnu-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/j154gbsslv2v4jscz18yg11z9csig1nr-download-windows_i686_gnullvm-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/jhjapbqzmb01ik9p8k2q8r5f2iiqvx69-download-windows_i686_msvc-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/ksx8i6qz59rrfd9qf8x34i0gvzgqjfww-download-windows_i686_msvc-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/dmm6y9zwafnylxyz0rdafzqqr9my81n7-download-windows_x86_64_gnu-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/japx8qiw2ns9g6vzshjxqdp0bj1xndg5-download-windows_x86_64_gnu-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/jsli65nls9qj4rbdm61qxqp8rkjfciam-download-windows_x86_64_gnullvm-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/bljn085nnlkh5i3xmbv5by4ay44d2wgk-download-windows_x86_64_gnullvm-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/4p09nk6cp1kihkj0hhyf95lnzsv1wbg1-download-windows_x86_64_msvc-0.48.5' from 'https://install.determinate.systems'...
copying path '/nix/store/01lq11sncddwjgk9d948y246b59shf93-download-windows_x86_64_msvc-0.52.6' from 'https://install.determinate.systems'...
copying path '/nix/store/byx6hcq1hnxmr7wq7bs02w76n81722q2-e2fsprogs-1.47.4-info' from 'https://cache.nixos.org'...
copying path '/nix/store/vba9zgvxs8xzbv1cavc42q7m7gb2fb7v-e2fsprogs-1.47.4-man' from 'https://cache.nixos.org'...
copying path '/nix/store/zsgbv06jjlhn9r2xqg0caj3rdbxvxx3g-editline-1.17.1-unstable-2025-05-24' from 'https://cache.nixos.org'...
copying path '/nix/store/6fbxl0pblmzpm8hm1mg1gdjn7by4qlc5-ensure-all-wrappers-paths-exist' from 'https://cache.nixos.org'...
copying path '/nix/store/q3gid6c0w1xzxvbv7s5nj4pg68n9vfw3-etc-bash_logout' from 'https://cache.nixos.org'...
copying path '/nix/store/g1szp7606y96nlc0458pr1v6nwcp2y4j-etc-bashrc' from 'https://cache.nixos.org'...
copying path '/nix/store/mmbvbkpifrig0k6v2v4nhgac4cmgyddw-etc-dhcpcd.exit-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/5cr33li5pixn9whn2plfx11pcqsgdp7c-etc-environment.d-50-systemd-path.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/wxh7lsxzdnc8nkhz8s7bn1wfqc5jcxms-etc-fstab' from 'https://cache.nixos.org'...
copying path '/nix/store/710v65wf8wa9rhg7ca3xc85ij378q9d3-etc-gai.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/zmcq6wba9n42p5ikj4xmwnhbkw1g6kc4-etc-gitconfig' from 'https://cache.nixos.org'...
copying path '/nix/store/bs0r6dcs9hja953ay3h8vy075rjjg79c-etc-host.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/1k2z88gpm67qsvimj66jf27ln819ia1n-etc-hostname' from 'https://cache.nixos.org'...
copying path '/nix/store/apjpbg2jh40ak08f5m8dybvn24ynxvp8-etc-hostname' from 'https://cache.nixos.org'...
copying path '/nix/store/sf767sr18sk9lrjswhphavvxhdnp1wf4-etc-lsb-release' from 'https://cache.nixos.org'...
copying path '/nix/store/yw06snyy7i967xw309afxxm54qwf233l-etc-man_db.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/lla194mq2pam6djv6x0n7rjazg0m9a34-etc-modprobe.d-nixos.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/qfbgl8ski3m02rxq3hl97y73v9j3axlf-etc-netgroup' from 'https://cache.nixos.org'...
copying path '/nix/store/7v36jb33abslj3q66vjzxh2dik999w3l-etc-nix-registry.json' from 'https://cache.nixos.org'...
copying path '/nix/store/zmw8vn90ql6xs2h1zv1i796xppkc4slx-etc-nscd.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/29w4s0g9gacrrgs86ifg6pv88blbk9hs-etc-nsswitch.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/ablzm3vzcfwfv4dn3bfvvcla91fxn2ka-etc-os-release' from 'https://cache.nixos.org'...
copying path '/nix/store/1j0vas2fjgvgln8chgja383h8knm2gya-etc-pam-environment' from 'https://cache.nixos.org'...
copying path '/nix/store/fwmwrjwm7kbf2y99p90ny8lq9nqv41z9-etc-resolvconf.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/cx240166lbv5aqxqjw3r86pgwa74ql97-etc-systemd-coredump.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/vp1s3d2qfamz8y6b15qf9ms6ndniy3jy-etc-systemd-journald.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/dn52h90bl4j11whwiqw4sbinspkr4pbr-etc-ssh-ssh_known_hosts' from 'https://cache.nixos.org'...
copying path '/nix/store/lmxjpi02xvzrbhmdfp7dg6vzgqnb8sfg-etc-systemd-logind.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/6s3sd2qvhd5n647xh3h7yxcdiydvpzfn-etc-systemd-oomd.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/j4m1cwyl0y71pj4j9rj9d6zc03z0j8rm-etc-systemd-sleep.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/ixvfd87jizqvgsd0q4brxwb93gf2z2cm-etc-systemd-system-preset-00-nixos.preset' from 'https://cache.nixos.org'...
copying path '/nix/store/x8qv8wjj3k5dlw47fg6ismdazcj5494i-etc-systemd-user-preset-00-nixos.preset' from 'https://cache.nixos.org'...
copying path '/nix/store/zz5iwrlhqawpp3j0kbzir6zy3x91mkz9-etc-systemd-user.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/lawdl6fwyj55dign3dasn96cy1asgags-expat-2.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/zac0s2hjynd9gm71lmifygnba5jgzrif-fc-10-nixos-rendering.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/z8bha3w5ndpkrz2hsk042320akjsn4sz-fc-53-nixos-reject-type1.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/3fb95q31ilwc5416pw7yzqh17hsv3cnw-fc-52-nixos-default-fonts.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/hwlv1bbi634w3f2n0yl3bs2l3gsgwb2v-fc-53-no-bitmaps.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/s8s062iw5k48kzykd6r45z2fhl6kkcl2-fc-53-user-aliases.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/v2463wx0spc5ki8jni880b5z2yb888f9-fc-cache' from 'https://cache.nixos.org'...
copying path '/nix/store/r52rzv131yhm94m2mwabm3xyk7ly05lb-X-Restart-Triggers-resolvconf' from 'https://cache.nixos.org'...
copying path '/nix/store/zjwih3d9rrrw4ixll52wsy0538p7vdfd-findutils-4.10.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fp44fypr19g4fb8g56yml16n3rb2wa3h-file-5.47' from 'https://cache.nixos.org'...
copying path '/nix/store/93bjlzpa0w7cg6fmpkgxa7494ac9rwf8-find-xml-catalogs-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/z9xp5gx83h9j3nyn1qmlimfb9jnda70q-findutils-4.10.0-info' from 'https://cache.nixos.org'...
copying path '/nix/store/pn77172h2v3c2vbjqrjg23c6dws10dij-X-Restart-Triggers-systemd-journald' from 'https://cache.nixos.org'...
copying path '/nix/store/hcjlsfyi05lx353zr4wi8ffxllixdyx8-X-Restart-Triggers-systemd-journald-' from 'https://cache.nixos.org'...
copying path '/nix/store/w7mdgdvbyd9fmf7k9jl7lglvblqk32ag-firewall-start' from 'https://cache.nixos.org'...
copying path '/nix/store/wshfva2xg7l5ck28fk0im6r0kr9r9ygw-firewall-start' from 'https://cache.nixos.org'...
copying path '/nix/store/rgxcm4k1ldv9clci07y6ns3lpkig2bcz-firewall-stop' from 'https://cache.nixos.org'...
copying path '/nix/store/x7bbgcrzg61071mjzq6lwsdzsj12w0f2-firmware' from 'https://cache.nixos.org'...
copying path '/nix/store/36z7msh6ps0hy8l575ai3v0lvsyppja1-fontconfig-2.17.1' from 'https://cache.nixos.org'...
copying path '/nix/store/cbgbg45ibrfmyskia0346d39n8rwlr41-fstrm-0.6.1' from 'https://cache.nixos.org'...
copying path '/nix/store/w7vfh5f0nwnkdzkbr6r1pq4s2iw3fv6p-gawk-5.4.0-info' from 'https://cache.nixos.org'...
copying path '/nix/store/51ng815cag7jga0yc55wph1z9nymshx5-gawk-5.4.0-man' from 'https://cache.nixos.org'...
copying path '/nix/store/75bbfamip7akc94cpds1zq3xrjsj048y-gdbm-1.26-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/ab914p9fwpvl0gwdbxc51wczkgibg24l-fc-00-nixos-cache.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/zj9pvla611b1gvhfz1i57knf9xi3x5qz-getconf-glibc-2.42-67' from 'https://cache.nixos.org'...
copying path '/nix/store/mnfvcwhr7nzgljrc4wqcbslkiz7hyb26-gettext-1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/kf1v2ncrf1w42640ib6br8d95z40rvxs-giflib-5.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/9a0f1mfx8n1b8y64qx9999pq70j48ms6-git-2.54.0-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/q5wv2ldpcv5w8yb2wmsngsygvlxb73fk-glibc-2.42-67-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/fg4gkw8jr3w0cmikyxhcqr2bp2npm09w-glibc-2.42-67-getent' from 'https://cache.nixos.org'...
copying path '/nix/store/dkij3qk5h8rwzysr42w02knfl95vz8q8-glibc-locales-2.42-67' from 'https://cache.nixos.org'...
copying path '/nix/store/zkw0hl5pzwkmrvkrfvr1q5zlk28nv9v2-gmp-6.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/rvjihmb55dm5ibli532nr4r3jcfk12qy-etc-modprobe.d-firmware.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/w8xlvapzxcz23ba312q119p57bnc7200-gnugrep-3.12' from 'https://cache.nixos.org'...
copying path '/nix/store/7ghz0fdi19rfq6r9xzr8j6w47hpr75n3-firewall-reload' from 'https://cache.nixos.org'...
copying path '/nix/store/nxb6zxmvczf5k60h85w06qh32scpqa0p-firewall-reload' from 'https://cache.nixos.org'...
copying path '/nix/store/qk4mw1nwcmfhbcz4g7gs3lpzi93dag4f-gnugrep-3.12-info' from 'https://cache.nixos.org'...
copying path '/nix/store/gxapzvp834wn041yqv35zwzasamvqziv-gnused-4.9-info' from 'https://cache.nixos.org'...
copying path '/nix/store/066fzlsj0wdq2sqxjrksysfxyr4r5f72-gnutar-1.35' from 'https://cache.nixos.org'...
copying path '/nix/store/1j461raj6r4hihrq9j6alrddmx837fzs-gnutar-1.35' from 'https://cache.nixos.org'...
copying path '/nix/store/bqgsimdnlzi5r9wwnjzjfp7pxgwyaq7m-fontconfig-conf' from 'https://cache.nixos.org'...
copying path '/nix/store/avcnv3j0l6lwsffrihbhj84pgy11yqj3-gnutar-1.35-info' from 'https://cache.nixos.org'...
copying path '/nix/store/i6jrv1f3mygdh2gv5r2yn1lm77d3qals-groff-1.24.1' from 'https://cache.nixos.org'...
copying path '/nix/store/z4zcd87nx2hrsdayd0vl2mx5ncj3ikd8-binutils-wrapper-2.46' from 'https://cache.nixos.org'...
copying path '/nix/store/6mskackqnab34ag1gfiyk5xkcvlr1hba-group' from 'https://cache.nixos.org'...
copying path '/nix/store/cdqbzw7gmcd62s8pyif19psr47l4000q-getent-glibc-2.42-67' from 'https://cache.nixos.org'...
copying path '/nix/store/h304h5a5y9h1pl6crhz65jlri91nxyay-gzip-1.14' from 'https://cache.nixos.org'...
copying path '/nix/store/nrgw1z0ignphgixn48kcbhw87fmfz921-gzip-1.14-info' from 'https://cache.nixos.org'...
copying path '/nix/store/2mp57my43vk18q784acjydykd0xmr0j7-gzip-1.14-man' from 'https://cache.nixos.org'...
copying path '/nix/store/sydc4li20q5zmm3airw7dzx9z5aicyd1-hashed-password.root' from 'https://cache.nixos.org'...
copying path '/nix/store/dzks1gas4j5xhdyig9b53yb5g9s1h7i5-hicolor-icon-theme-0.18' from 'https://cache.nixos.org'...
copying path '/nix/store/fnjxr88fr51wfzs7wvdv2qv43h7jr10x-hostname-debian-3.25' from 'https://cache.nixos.org'...
copying path '/nix/store/hgf9k6s6bcpff2v6mkm1pmbvvyr2w5z6-hostname-debian-3.25-man' from 'https://cache.nixos.org'...
copying path '/nix/store/2b22nrljd7n71qzqyv8kr0pr6v47h39p-hosts' from 'https://cache.nixos.org'...
copying path '/nix/store/n10gajqdjr3l783d7pbjj07ixvkajpw4-fontconfig-etc' from 'https://cache.nixos.org'...
copying path '/nix/store/4k6nzlz8c3rylf8jrygq3hmyw80lppc7-hosts' from 'https://cache.nixos.org'...
copying path '/nix/store/1df8022jr4q1xkd7rsd7kvhj4pd8vqsh-hwdb.bin' from 'https://cache.nixos.org'...
copying path '/nix/store/ds6s2a0iyim3rc9gfhrs0xf1q8x0ymxv-hwloc-2.13.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/657nyvrdribi7if64nhykz0vji7ljn1p-icu4c-76.1' from 'https://cache.nixos.org'...
copying path '/nix/store/sw10zxhzf97isship9a6ngv994zkpmyp-icu4c-78.3' from 'https://cache.nixos.org'...
copying path '/nix/store/wdin7x5jyy8ikw69027n98q3q3f9kijv-inih-62' from 'https://cache.nixos.org'...
copying path '/nix/store/ad1411ij7fnaaw9821x2g273vm4q9qac-initrd-linux-6.18.37' from 'https://cache.nixos.org'...
copying path '/nix/store/qykiaq4fyaxrwps4mbghrp5anj786a8c-initrd-linux-6.18.37' from 'https://cache.nixos.org'...
copying path '/nix/store/511bgnp37ama3rgq2bywx2lhiq7wadl0-iptables-1.8.13-man' from 'https://cache.nixos.org'...
copying path '/nix/store/qncjg8hd6mcma9fzfyxdxc74d9m1hbpi-iputils-20250605-man' from 'https://cache.nixos.org'...
copying path '/nix/store/9zgdw228zjfd4jzr901qzxhfcf43kz91-isl-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/kx98afay8i2j8vny54b56jghf3pim2pd-issue' from 'https://cache.nixos.org'...
copying path '/nix/store/iq1pcns688mzilimz10294nj4774hprn-jansson-2.15.0' from 'https://cache.nixos.org'...
copying path '/nix/store/4b9fnqw9c48sbiidi2j5dchw8lmi21z9-jbigkit-2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/chjh9l35abi2y3xnygpk8wyj828hyic8-jemalloc-5.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/k59krzj3hnkflm623b1mhvgibkmjfnc0-jemalloc-5.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wzswkrp7nj4534a7423n7j7vkcaxywn2-hostname-hostname-debian-3.25' from 'https://cache.nixos.org'...
copying path '/nix/store/y68xqa5hwa1xn4d3fppbs452c2hamhdk-json2x-0.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fynagizpw08nvf6icpdyjarbar5p2mcj-kbd-2.9.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zxa2qqg35pszrid7k25ybfj1q64q9174-kbd-2.9.0-man' from 'https://cache.nixos.org'...
copying path '/nix/store/yhbxryl6698ig8kzrmgjb4h288m8wyil-kexec-tools-2.0.32' from 'https://cache.nixos.org'...
copying path '/nix/store/lfj10jjq7l48m6w8lh0lwj8prbw4b6fq-kmod-31' from 'https://cache.nixos.org'...
copying path '/nix/store/x8n1yb7wh7msk0lvj3xawcw77967pvvy-kmod-31-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/w49nkqjidq5l6fmdbsn1i4rq8aw2v7ib-kmod-31-man' from 'https://cache.nixos.org'...
copying path '/nix/store/mnp08y1j94rrfkng33lhpxpdnlai7wb8-kmod-blacklist-31+20240202-2ubuntu8' from 'https://cache.nixos.org'...
copying path '/nix/store/yqjfznv0cgzwsp3hwng1vxm1wvp4ynqz-jshon-20170302' from 'https://cache.nixos.org'...
copying path '/nix/store/fdbs1v4c1n5xq5dnzrbz9aypc9q2q5jk-kmod-debian-aliases.conf-30+20230601-2' from 'https://cache.nixos.org'...
copying path '/nix/store/6xa5z7yrhzshhizclpl9az3az2dwb761-ldns-1.9.0' from 'https://cache.nixos.org'...
copying path '/nix/store/6ywssag7pi7pnh16gpima8d5icwbais6-lerc-4.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/n63sk81g09b1c7sv4294dw6mdwm55f11-less-692-man' from 'https://cache.nixos.org'...
copying path '/nix/store/5x85b1fdkwflrlh1y3jza6mas50acacj-lessconfig' from 'https://cache.nixos.org'...
copying path '/nix/store/4pfqnr2ik12v6hxw2k1kafllk492y1zh-libaio-0.3.113' from 'https://cache.nixos.org'...
copying path '/nix/store/3fd9dhs5bn4nl92a0ppqabyzwfc94xf1-console-env' from 'https://cache.nixos.org'...
copying path '/nix/store/xrnir0r9asp1gyf5qali282gg3l36hlf-libapparmor-4.1.7' from 'https://cache.nixos.org'...
copying path '/nix/store/b2f0cn980wsjfh2l1hczga2mlai0djnp-libbpf-1.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/d48gvvb90v8avl74k44xn940rhb2iqc3-libcap-2.77-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/wn2rikr7gzgvmhsp2a9pphg2qfz2rbyz-libcap-2.77-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/md6mcqass948yf0l72add4q1cl5vhnj7-libcap-2.77-man' from 'https://cache.nixos.org'...
copying path '/nix/store/28pf35ppgz019c1d2q709pnkkcqdqlxp-libcap-ng-0.9.3' from 'https://cache.nixos.org'...
copying path '/nix/store/d2dmvcm642r48kp5x7nzg504kqikcfdm-libcbor-0.13.0' from 'https://cache.nixos.org'...
copying path '/nix/store/hyf7m87blkdjwp1bf45waxjhhk4zx812-libcpuid-0.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/61wvqlkj92m30wnki32b5y1icqm8wdpf-libdeflate-1.25' from 'https://cache.nixos.org'...
copying path '/nix/store/gzpx9ardq9njswhpv1cakxzih1ig3jzd-libev-4.33' from 'https://cache.nixos.org'...
copying path '/nix/store/4c9lbyb7payh9akmia87v38bi82vdidb-libevent-2.1.12' from 'https://cache.nixos.org'...
copying path '/nix/store/vb5nfiqv7rw67lv60w0si4n4q2bwmnml-libgpg-error-1.59' from 'https://cache.nixos.org'...
copying path '/nix/store/4b37gbgcbbdm1kvqfbnx989qsz55zzkx-libice-1.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/74rfjz4ix2zc8669fphryawyf9yh2yk9-libiscsi-1.20.3' from 'https://cache.nixos.org'...
copying path '/nix/store/cc98qw6f8xk09spfyp0w2xxzc4nscp0v-libjpeg-turbo-3.1.4' from 'https://cache.nixos.org'...
copying path '/nix/store/7sw4rf00p0161r5bs930givq75aikw6x-audit-4.1.4-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/5y9n56lgv2748sl3nfxlaxpm4lid9i1h-iputils-20250605' from 'https://cache.nixos.org'...
copying path '/nix/store/brygjb3xvc1rp7ddnfjdcyp2pqdq4s7f-libmd-1.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/q54dl7rr2y229lyz1n166rl230yk3aip-libkrunfw-5.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/4zm8lh24bq53iil6kd552d17y5q815hr-libmnl-1.0.5' from 'https://cache.nixos.org'...
copying path '/nix/store/4bfq8grfaagmycyaf0iafrm7pyx0dzhf-libcap-2.77' from 'https://cache.nixos.org'...
copying path '/nix/store/4rhx4wzjh7b3mqrap2xq9j70qylchgci-libnet-1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/c5nbbqawilqs5xayr6hcwa8qvlz4wymm-libnfnetlink-1.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/096bv8ac4y9i535w502zk67cdph88sl3-libnl-3.12.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zdnklkiwplm3xbzgg07nnq07c3z0mfig-libpipeline-1.5.8' from 'https://cache.nixos.org'...
copying path '/nix/store/z04p8rprsg9wpjsr2al8af3sfn2bd255-libassuan-3.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/qp14ji38fkmy939yghbwrnn8dpb5ycif-libgcrypt-1.12.2-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/9hiz27p8bl78z5y55msnqag4brlkxh6q-libksba-1.6.7' from 'https://cache.nixos.org'...
copying path '/nix/store/yzv7lxhgkiggw4yyh4i4igpi5jc43bhk-libpng-apng-1.6.58' from 'https://cache.nixos.org'...
copying path '/nix/store/b5nvyda1lqngjz1x0zv7p02qkkaiz88m-boost-1.89.0' from 'https://cache.nixos.org'...
copying path '/nix/store/yqd57f7hdzrzs7za3mdj58f9hm0xmwjj-libressl-4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/9vk9y8h8md996zkjiwydw624hwkfrkbh-libbsd-0.12.2' from 'https://cache.nixos.org'...
copying path '/nix/store/8d9b2rwmr6yk6z7g4vqk284ydrpgxiyf-libnftnl-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/yph01b0dap73v30fj76jnk48af5wpp31-libressl-4.2.1-man' from 'https://cache.nixos.org'...
copying path '/nix/store/43pddf1xp5az9rzxljhl5la2m9xxmvps-libnetfilter_conntrack-1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/mrds6svi9pkbrsxrq3nbsi09zbyshhgb-libseccomp-2.6.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/pg672d2fmabasghm8xcz6j9avh1a30jc-icu4c-78.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/114gyk70x8my82fpcjnxksqbhxxh1j51-libselinux-3.10' from 'https://cache.nixos.org'...
copying path '/nix/store/bs6w35m2a5hfkpi8lzbvw6zkl35pdx78-libsodium-1.0.22-unstable-2026-04-09' from 'https://cache.nixos.org'...
copying path '/nix/store/qa77jydj4h1n2lj4gzshrmkvinkaz3y1-libtasn1-4.21.0' from 'https://cache.nixos.org'...
copying path '/nix/store/9xw59kidx5dh9b0bzk1why292ww1swkd-libtool-2.5.4-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/lahfs5a95092gnqisnky12x63wa06qsp-libpcap-1.10.6-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/25hs1bkz6dxlg4j97r24jwrkw94000zx-libtpms-0.10.2' from 'https://cache.nixos.org'...
copying path '/nix/store/n0ac1vxwkbklbpdhrc6s6vw5ra96vlxv-liburcu-0.15.6' from 'https://cache.nixos.org'...
copying path '/nix/store/rcka4ghbqhv6b9j78v7m3071hh0cz4cj-liburing-2.14' from 'https://cache.nixos.org'...
copying path '/nix/store/3yblv07q6w8hygfzsp6nrp0phb79mc20-docker-runc-29.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/r36gn0mdw2vlzzv0nz1wyxcd6xm08c8q-iptables-1.8.13-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/hb0162ab7wxqm1sdfy23zbmgayj1z6aj-libuv-1.52.1' from 'https://cache.nixos.org'...
copying path '/nix/store/333b26zbv2zqk62jhylgrviflk7lmcdg-libressl-4.2.1-nc' from 'https://cache.nixos.org'...
copying path '/nix/store/l6pwiihhn9jkxrm38qvf18b3c4qpd2w4-libwebp-1.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/8df4dy2m15wm65f5ksd6rvm5n87jm6vm-libxau-1.0.12' from 'https://cache.nixos.org'...
copying path '/nix/store/mlcv28rh7faq6iqmm9vkny11hbbicgir-libxcrypt-4.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/lgcbdfspxmgyrxmb06j8cwy3qdlry8xp-libxdmcp-1.1.5' from 'https://cache.nixos.org'...
copying path '/nix/store/hm2ixz0mgyx22sxzihs8ix1rsj2g36y6-libxml2-2.15.3' from 'https://cache.nixos.org'...
copying path '/nix/store/iswwp0p9sa9iyiar387r423qhqpwpi4p-libyaml-0.2.5' from 'https://cache.nixos.org'...
copying path '/nix/store/l8ccis497ymkh2m479l6j8q9ivlp8xkr-linux-6.18.37' from 'https://cache.nixos.org'...
copying path '/nix/store/jz6sjcglvyw2q4ji2d5h7mlvcl0y811r-linux-6.18.37-modules' from 'https://cache.nixos.org'...
copying path '/nix/store/w9kkr15qfa6avzxf3v9xx4nqd18jx6c5-linux-headers-static-6.18.7' from 'https://cache.nixos.org'...
copying path '/nix/store/0cx4sx34abcvd49mwzjyxq4j5sxlbbmp-linux-pam-1.7.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/9dx1l7x3fbps5i3ad6lrw27i6c65balj-libuv-1.52.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/qbsvh4fw7lrmkqk870w4sc21kqylph42-iproute2-7.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/xp2mmlvqfjn3c7mlxidd9hl27bmr7hn0-linux-pam-1.7.1-man' from 'https://cache.nixos.org'...
copying path '/nix/store/j3sa6pskpfznyrgssf2xidwv6s135yra-llhttp-9.4.1' from 'https://cache.nixos.org'...
copying path '/nix/store/f51ch3asrp52bly5rdarh3823wfp1x91-libtiff-4.7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/g9hxxfbxr0y2fsan8nc55w9yanfx66ad-cyrus-sasl-2.1.28' from 'https://cache.nixos.org'...
copying path '/nix/store/xpzd2xmvqpkv1la78qkfpybkfwak27xd-libxcb-1.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vr00x34nq68a86c62svc9mjjw3hqvs32-dtc-1.7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/fr3qqvg4iylba6hpf53pr9k27ddv2826-libarchive-3.8.7-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/xp5rqfd76c5a87cg7k6pbspz3r0h016q-libxslt-1.1.45' from 'https://cache.nixos.org'...
copying path '/nix/store/gxn1783kzl6ck34h22w6f7pwnsnpm84v-llvm-21.1.8-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/wlpjjjw5f7pqv5ksbnwbny4gar2clhdz-libgit2-1.9.4-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/l7890dh7yg3k88q80qfjxcq2g2ykh978-llhttp-9.4.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/48d1xzfvpi39ysfp5yh1xzpg1z5hfa1q-libkrun-1.19.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ccihqmbbygsvx7jap8apl5jwp8ipy61y-lndir-1.0.5' from 'https://cache.nixos.org'...
copying path '/nix/store/1mjccm03wyxpvxxdcxazyd7l8k449rc8-local-cmds' from 'https://cache.nixos.org'...
copying path '/nix/store/flhvh2a7c578zbca9arvn4n2vc2pcgpc-libx11-1.8.13' from 'https://cache.nixos.org'...
copying path '/nix/store/76515nbh5qvc5da181kq04gn64ac7dbz-locale.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/s1gylv2h5x3sjmc2rnys7r9jmlbcci7q-login.defs' from 'https://cache.nixos.org'...
copying path '/nix/store/2jracld554p4sbgz6kiv3hbjmcnla7am-lowdown-3.0.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/lj0kksb2cw2aswamwl1698xsag610bh3-lvm2-2.03.39-man' from 'https://cache.nixos.org'...
copying path '/nix/store/498qnbvjw49sgap3z1fj81mrjm5r2kk8-libxslt-1.1.45-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/fm9ga2sqj5mg40v35zn4mcn7sjj8xp9v-lzo-2.10' from 'https://cache.nixos.org'...
copying path '/nix/store/9bgw49f2lk2wc3gxizmg987xmgpqplqx-lz4-1.10.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/qi6pv56kjs30bphl10iq4vvs9pbvc5kh-make-initrd-ng-0.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/f16vss2p6m6r7h7a81473x31gqj8j4ha-make-shell-wrapper-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/8264x7106x7r4cj6gmh1jja38jy9zy8x-man-db-2.13.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/61pg12x7vjhbm7ygcb35rifw0ns6rlbw-mbedtls-3.6.6' from 'https://cache.nixos.org'...
copying path '/nix/store/4di4qyw87irc26vwya4d713x8q979w8v-migrate-dhcpcd' from 'https://cache.nixos.org'...
copying path '/nix/store/lfkkl8qiwp5910xylcxf3256hl5r0ri7-mirrors-list' from 'https://cache.nixos.org'...
copying path '/nix/store/xcnbkxr59k12dylqibbklhiard9lwagq-mkpasswd-5.6.6' from 'https://cache.nixos.org'...
copying path '/nix/store/1m5ihbyahgy8kgqnlfiqfji13myflvqd-mkpasswd-5.6.6-man' from 'https://cache.nixos.org'...
copying path '/nix/store/b0dnb18ak3qwrkml30b5a9xcgk1vsb92-libxext-1.3.7' from 'https://cache.nixos.org'...
copying path '/nix/store/azbxy2h24vnwjrd5h14pm151wq4k5rpf-mounts.sh' from 'https://cache.nixos.org'...
copying path '/nix/store/xnlpfhi3m3in4b1h8h905hpv97gc8b07-mpdecimal-4.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wzigz21rnv9nj8g7r8ai8ldm84zqnhda-mpfr-4.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/gh6qk4jxgfh66q4g9afmazvfdlh0vk7p-nano-9.1-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/zjlnqc8xaixf3qmrcw9wypybra0ah63k-nano-9.1-info' from 'https://cache.nixos.org'...
copying path '/nix/store/23hqhqhiz4ss2yg7ym5v4m1kwcmv4n7m-nano-9.1-man' from 'https://cache.nixos.org'...
copying path '/nix/store/mxq1r9w2w2y9lsqb5fkcyb5xbbki1n57-ncurses-6.6' from 'https://cache.nixos.org'...
copying path '/nix/store/6cblb0wy8kknk5jwj2gzah0jz6ihj3kx-ncurses-6.6-man' from 'https://cache.nixos.org'...
copying path '/nix/store/fg0mvr1a23jp4s4q0h78vphmbcf70s0p-netavark-1.17.2' from 'https://cache.nixos.org'...
copying path '/nix/store/s0vq7pas9sm25sj371w1vh0dj7s1al76-netpbm-11.13.3' from 'https://cache.nixos.org'...
copying path '/nix/store/v9c75y1hd6yzlgiwvxriigylqgznq3rg-nettle-3.10.2' from 'https://cache.nixos.org'...
copying path '/nix/store/c9bpnmih30f3mc686nzv8z7h72j7g59k-nghttp2-1.69.0' from 'https://cache.nixos.org'...
copying path '/nix/store/lk89z9iw03dg967ddm1bk8zb76g1npyw-nghttp2-1.69.0' from 'https://cache.nixos.org'...
copying path '/nix/store/n1xnarcyxxkgcs5h23l8ryk0avdmsk3k-nghttp2-1.69.0-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/c0i98bjjwf0lcmrh97123qayrzchxz3d-libmpc-1.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/1zfj3dfa76ss61d1daxp5ibwnrq3lvdd-nghttp3-1.15.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/f1h5xcj5pnavg6cb2anq8jzf4camssik-ngtcp2-1.22.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/g4nh5r7fncc4a9r72m4asmllf9p4igkd-nix-bash-completions-0.6.8' from 'https://cache.nixos.org'...
copying path '/nix/store/wqzp256kha5gnqjx9qfiki3pp4p415k1-nix-manual-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/xd94f9y5r9zf5m4slxxdr7la8rnsnpwy-nix-manual-2.34.7-man' from 'https://cache.nixos.org'...
copying path '/nix/store/xvdf2dnj66vyyi0jjwxr17qjk0v3w8fp-nix-wallpaper-simple-dark-gray_bootloader.png' from 'https://cache.nixos.org'...
copying path '/nix/store/q9hpx610dycyvwxck9g45jdk58b98bfz-nix.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/m2pjzl81hy7x344c07fmmccchp05wz1i-nixos-build-vms' from 'https://cache.nixos.org'...
copying path '/nix/store/bf4w9hbfia75s34k42gxsn1x59whrck0-nghttp2-1.69.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/sq0nrnfwhkc5ljvklnrk5ps4358g4nbj-gcc-15.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/2vwh1xcpc942x4crpxqyr4y441rrl0q1-nixos-init-0.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/3phyk704x9rlgs58b7w14a6wsfc7jfar-less-692' from 'https://cache.nixos.org'...
copying path '/nix/store/wi6ggxa7zy2i6yy03b5f3pf7a47knnd7-libedit-20251016-3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bxpcyzr9vbmzkglrs9052l5pa3npvc4b-nano-9.1' from 'https://cache.nixos.org'...
copying path '/nix/store/4xp8hvv4wwxylhpik0i10l9bz6a74jaz-nghttp2-1.69.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/9sy6jxskz0gnanqn74i2g4l0ra92lc9b-nixos-version' from 'https://cache.nixos.org'...
copying path '/nix/store/p74ai3ddhqnlwn1s9fl7my2bbmkxmq9w-nixos.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/blqs16h4fi2ini732l9mdclb24s2r7sc-nix-2.34.7-man' from 'https://cache.nixos.org'...
copying path '/nix/store/qdgn56z6kyp9si6i228vg7xzxmbvfi8n-npth-1.8' from 'https://cache.nixos.org'...
copying path '/nix/store/kjry8f6qwxgk6ldiv7nm0pak44c1pgs6-X-Restart-Triggers-nix-daemon' from 'https://cache.nixos.org'...
copying path '/nix/store/7c1zq1gyqcfh0784qf9hi5fl6adkw36g-nsncd-1.5.2' from 'https://cache.nixos.org'...
copying path '/nix/store/033cpffggbriqz6mcx0743ax75nd5jzk-nspr-4.39' from 'https://cache.nixos.org'...
copying path '/nix/store/zdl7dn1gmi1cxdw5a8hw6xsf4cz0rjmg-nss-cacert-3.123' from 'https://cache.nixos.org'...
copying path '/nix/store/0vf7hfclpbakd9nj7sp7qrr7kp48m6nf-dash-0.5.13.3' from 'https://cache.nixos.org'...
copying path '/nix/store/0w7yga0dygcrpcgb29naqwir3i43ldgd-nftables-1.1.6' from 'https://cache.nixos.org'...
copying path '/nix/store/dsz4bgsmk2msd92jcwhbyzsymygfkqs0-etc-nanorc' from 'https://cache.nixos.org'...
copying path '/nix/store/pv0hcs45v03zrybjm40pvq0lj808r64l-X-Restart-Triggers-systemd-modules-load' from 'https://cache.nixos.org'...
copying path '/nix/store/c3p2kzczdl0m4ahglf58f58np7ic7cby-nss-cacert-3.123-p11kit' from 'https://cache.nixos.org'...
copying path '/nix/store/n7vzh8day7g32l5j9pfn1yckw4p24qks-nsswitch.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/s1c2f5jp18p5qi44yf9kf9dqjdd3xgxm-offline' from 'https://cache.nixos.org'...
copying path '/nix/store/hs795wc8sza4yvj4cixjy740xmnjs5gv-gnupg-2.4.9' from 'https://cache.nixos.org'...
copying path '/nix/store/67v87bnfygr8s87cinkzan1cxkwpa4r8-nix-2.34.7-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/cfnwlci0zx0bwd26y4bs74vraprak75g-onetbb-2022.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/4z1k9vq4dgzsa8ifbmdgv1y7wqdqq234-oniguruma-6.9.10-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/rlkx75hswvsdw704zhszq3jhpclrlarb-openldap-2.6.13' from 'https://cache.nixos.org'...
copying path '/nix/store/3rs4srw1phc3hbkr7agimv3b30cmvi4w-openresolv-3.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/qp1rqn8wnpzk0d3qkc3k6dg90xyqwbq4-openssh-10.3p1-man' from 'https://cache.nixos.org'...
copying path '/nix/store/ci20by4f9vjkpy322f631qcwv6l5z32j-openssl-3.6.2' from 'https://cache.nixos.org'...
copying path '/nix/store/clvbx203wyqkdnqc5ngyhjlhcqn5s9x9-openssl-3.6.2-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/d3y9krrxjz9xyrwfr2f71d1yk6ck95yx-p11-kit-0.26.2' from 'https://cache.nixos.org'...
copying path '/nix/store/w31v80w6c9vf32sai5yy9gwqa8jwcw8g-passt-2025_09_19.623dbf6' from 'https://cache.nixos.org'...
copying path '/nix/store/pc4lgmj789nahrarw12h4dzqqjrdw4nh-passwd' from 'https://cache.nixos.org'...
copying path '/nix/store/vm55g5jg7ra19gdsxsxr092vpb52ayiz-patch-2.8' from 'https://cache.nixos.org'...
copying path '/nix/store/qpmypc2hndyyxk30zv0xi0qcfx739f5l-pcsclite-2.4.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/k7kxg101ikkm0cyf8jcqhg948vy542af-perl-5.42.0' from 'https://cache.nixos.org'...
copying path '/nix/store/f5g7iv09b3z04wxmlq2ybnhbx3a7nvim-libblake3-1.8.5' from 'https://cache.nixos.org'...
copying path '/nix/store/bzm6nb8fx5p005bygrarn48i6qy1ir3a-jq-1.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/vjsdgy4nl5j1yk86wf0107c6mq9jaaij-perl-5.42.0-man' from 'https://cache.nixos.org'...
copying path '/nix/store/flh86wwn4sb0ypjw3xa33ckrjcvglwi6-perl5.42.0-Clone-0.46' from 'https://cache.nixos.org'...
copying path '/nix/store/82529c3p0fa84d5m5wmppwczh051i12l-fake-nss' from 'https://cache.nixos.org'...
copying path '/nix/store/i0jqva96qfgc76g8w7jbyiv6h3si07b9-openssl-3.6.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/zbxpzihyljvbzlwzdm4xhcqwwn84ny6h-perl5.42.0-Crypt-URandom-0.55' from 'https://cache.nixos.org'...
copying path '/nix/store/nbar62x3aibspqdv9wqx6gi5bp1hdlps-perl5.42.0-Digest-HMAC-1.05' from 'https://cache.nixos.org'...
copying path '/nix/store/ij20p9wmv0qx7nqgxyc9fxpwyvmc0yrd-perl5.42.0-Encode-Locale-1.05' from 'https://cache.nixos.org'...
copying path '/nix/store/32bzgyak5xxqywb5f192rhy66s10d8kk-perl5.42.0-FCGI-0.82' from 'https://cache.nixos.org'...
copying path '/nix/store/l5p52saf0rh1fspzwfx32813pb1ap597-nix-util-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/0f0b5ib2g2bhqwrckbpnmi3ymllc3ai3-perl5.42.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'...
copying path '/nix/store/q0pj1dw2nr57y6b4pqljklf0hy20alfj-jq-1.8.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/m935rz2ndg0dsamr1iyx26i7zzbkmirk-perl5.42.0-File-Copy-Recursive-0.45' from 'https://cache.nixos.org'...
copying path '/nix/store/a6932cfi2zzgx1qsyrgd1fqh9491c05r-krb5-1.22.2-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/w5lmwpf3abphzw1wcfy40a3sb2djw9gl-libssh2-1.11.1' from 'https://cache.nixos.org'...
copying path '/nix/store/rxwvcdybfbjf92p392yslfqxy75gz72m-openssl-3.6.2-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/byyx9mb58vfnlxdizfpn1lfzyashbvnn-perl5.42.0-File-Slurp-9999.32' from 'https://cache.nixos.org'...
copying path '/nix/store/qxmvz707fkrlws1nzg2ybarylqdq6lbx-perl5.42.0-Authen-SASL-2.1900' from 'https://cache.nixos.org'...
copying path '/nix/store/8zym74vvwybljf7knrbk6dld5dx7g9k1-perl5.42.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'...
copying path '/nix/store/gjg1jlxsy4p8yqz6jar18vc89cpbhmx5-perl5.42.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'...
copying path '/nix/store/7a1fkns1l0addvfnnc2idxldq3p5kcgr-perl5.42.0-IO-HTML-1.004' from 'https://cache.nixos.org'...
copying path '/nix/store/3vavalljj18drsycygl361zqz4rryygd-jq-1.8.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/9005dvz7bafcqa1avy158q75zrf9606d-perl5.42.0-IO-Stringy-2.113' from 'https://cache.nixos.org'...
copying path '/nix/store/1rlxgf4457g2s35ggl5shif6v51z3hpp-nix-nswrapper-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/jxn9w2p51ifbkha1h4kxj8c5s2fc2slh-perl5.42.0-IO-Tty-1.20' from 'https://cache.nixos.org'...
copying path '/nix/store/fx42k6xn9jrn5ww66wmg2rakb4jsd55d-perl5.42.0-IPC-System-Simple-1.30' from 'https://cache.nixos.org'...
copying path '/nix/store/a8jlbhcp8p38gz1lfxrkrb6359ksc9fx-openssl-3.6.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/as1pfphd8zla4j9s8vfz3rjzgvank2ki-perl5.42.0-JSON-4.10' from 'https://cache.nixos.org'...
copying path '/nix/store/pw08p81i20j52nbfls9lx30cv4dd0smv-perl5.42.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'...
copying path '/nix/store/jbkfqpgxnnxwnxpvzjw0bjb9p899fpjq-curl-8.20.0' from 'https://cache.nixos.org'...
copying path '/nix/store/90n49069jcmw024l1jp72ai9dj5lmilh-krb5-1.22.2' from 'https://cache.nixos.org'...
copying path '/nix/store/sqkvs0afzdsxs6c489ycvfj518ky2490-perl5.42.0-List-Compare-0.55' from 'https://cache.nixos.org'...
copying path '/nix/store/irqbmz79qzkw9jrk8nh20gw5g24k2skd-perl5.42.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'...
copying path '/nix/store/ihyqpcys1fga4lrpzk0ar64zwf8fs9gz-perl5.42.0-Config-IniFiles-3.000003' from 'https://cache.nixos.org'...
copying path '/nix/store/nji0pdvar7qsrmslfn4qk6y4cz872cfa-perl5.42.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'...
copying path '/nix/store/k5qi03xws2k700fqc75dnz4l29slkb56-perl5.42.0-TermReadKey-2.38' from 'https://cache.nixos.org'...
copying path '/nix/store/qn4hriwdhrja2kfiza5v9ck86l4c5dkg-perl5.42.0-IPC-Run-20231003.0' from 'https://cache.nixos.org'...
copying path '/nix/store/b1xzw268cvag1c7l9f3f228617mh40vd-perl5.42.0-File-BaseDir-0.09' from 'https://cache.nixos.org'...
copying path '/nix/store/b6dac7q3270fhwxr0glxi35hrhw2v97r-libssh2-1.11.1-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/ijyyr4z6f0iv4mb95bmsf9v94bg0r56z-perl5.42.0-Test-Needs-0.002010' from 'https://cache.nixos.org'...
copying path '/nix/store/0qlr9lqfqgiz36qplvf4n3npdc4dp1q5-perl5.42.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'...
copying path '/nix/store/1v9hy61g6qhl5rcjbblfj36cjwgxp0h5-perl5.42.0-Time-Duration-1.21' from 'https://cache.nixos.org'...
copying path '/nix/store/w89lngipd4prsb03m5fkpf4x3036scl0-krb5-1.22.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/k0ha2r9v214m0gg1hl688a0y5149y1q3-curl-8.20.0-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/1f4745c6ni1jw3fybw1ybj7r6b0dsn8r-perl5.42.0-TimeDate-2.33' from 'https://cache.nixos.org'...
copying path '/nix/store/xbqyzyjihyys5n986qmwwp32x84z1cj5-perl5.42.0-Try-Tiny-0.31' from 'https://cache.nixos.org'...
copying path '/nix/store/hf249rjrydav54gmmks6y5z1pqx2jf0l-perl5.42.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'...
copying path '/nix/store/vb5imqmjbnshk12wkyfpc3zgym8mh65l-perl5.42.0-URI-5.21' from 'https://cache.nixos.org'...
copying path '/nix/store/ywimhfikf5r1vxz9n4zjdb8wacv0z9xs-perl5.42.0-XML-NamespaceSupport-1.12' from 'https://cache.nixos.org'...
copying path '/nix/store/4k2l0ci1amcsm8ii63zrwswsf7qrygsa-perl5.42.0-libnet-3.15' from 'https://cache.nixos.org'...
copying path '/nix/store/si3vsc5dpfx51kw60y1vmby6r0k7s8lx-pigz-2.8' from 'https://cache.nixos.org'...
copying path '/nix/store/mwwr9pw1xqar6a725mnkw3fl5iahyj1m-pixman-0.46.4' from 'https://cache.nixos.org'...
copying path '/nix/store/8vczlqjvk4dbbgqvphfvxb6g5v5b45q2-podman-5.8.4-man' from 'https://cache.nixos.org'...
copying path '/nix/store/nxwd1day2pm25w717s02bsaraybysvvy-podman-tmpfiles-nixos' from 'https://cache.nixos.org'...
copying path '/nix/store/7jxay6z45zmbkm26xcf3j70jxvlhnhzl-policy' from 'https://cache.nixos.org'...
copying path '/nix/store/9wbgv2cccng0wx8c7wjxkbwhk8jpnh8f-popt-1.19' from 'https://cache.nixos.org'...
copying path '/nix/store/xnaqr54jgxcc1smp1brqjjj67yhj2p4j-perl5.42.0-HTTP-Date-6.06' from 'https://cache.nixos.org'...
copying path '/nix/store/42wgpn29fvy4qqw7g04bjn15jv1c7s2l-perl5.42.0-Test-Fatal-0.017' from 'https://cache.nixos.org'...
copying path '/nix/store/c557jxiq3fnl3gmibw4a66c5b88fyf80-privkey.snakeoil' from 'https://cache.nixos.org'...
copying path '/nix/store/g3d0nxmgn4z2mkssyhwgn6xy94fm0vxd-perl5.42.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'...
copying path '/nix/store/573fkig1caynqahjsa01wa2pdgyish69-protobuf-c-1.5.2-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/akyvbnhyv3w66cd70fcxqigbfqbncidg-perl5.42.0-File-DesktopEntry-0.22' from 'https://cache.nixos.org'...
copying path '/nix/store/i608kgj90db0lp90xlp3bxx2vmb4g2m5-perl5.42.0-Net-HTTP-6.23' from 'https://cache.nixos.org'...
copying path '/nix/store/xh7hrjakx0g2hxpinan5k0la22n96y1i-perl5.42.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'...
copying path '/nix/store/viqr1b2gsdgs7fh6qfmkil026nsx3n3z-qrencode-4.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/wa7gfn92v9qvr9wysgi2qm3lh1a93vaz-radicle-ci-broker-0.29.0' from 'https://cache.nixos.org'...
copying path '/nix/store/px0417x1wrnj03rh67wi271d83l7q14z-radicle-ci-broker.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/9sgbr4r91m1xckk433vsaxr3r05s8pkb-radicle.pub' from 'https://cache.nixos.org'...
copying path '/nix/store/x5wsgi512g43b11kjm4y3ini1zi6ia5h-perl5.42.0-File-Listing-6.16' from 'https://cache.nixos.org'...
copying path '/nix/store/6jhkw6gp3s340n03cwn4wsg8v2mxfk70-perl5.42.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'...
copying path '/nix/store/vwcrqj2ri25i3i02vyls78d8d160p15k-perl5.42.0-HTTP-Message-6.45' from 'https://cache.nixos.org'...
copying path '/nix/store/im7mcigg1x2bq9rg7z3h3i26pjmss0c7-readline-8.3p3' from 'https://cache.nixos.org'...
copying path '/nix/store/whpwcxng4h08bq0yya2vb7fgqn8pd7dj-bind-9.20.24-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/qk81xlzyqsn4xbi74xjrz0wlkg6mirwn-registries.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/bp8i7rirhh638m7hnasmc1sqy15qkz29-rootlesskit-2.3.6' from 'https://cache.nixos.org'...
copying path '/nix/store/k2v9f3y5ghvcg7r84x9cpd8xpaig5dn9-ruff-0.15.20' from 'https://cache.nixos.org'...
copying path '/nix/store/xh2ymcfx0qcblpvww5n36xganw4hwzg1-runc-1.4.3' from 'https://cache.nixos.org'...
copying path '/nix/store/arn0lmmdr33kqiizfy87dijngc8d2wnr-s2n-tls-1.7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/203ifzgl14b1cmajfjxm7xa7cpkqbplm-netpbm-11.13.3-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/9xcz36wjkkfzqm4r292lkxkbwmpy0yl6-perl-5.42.0-env' from 'https://cache.nixos.org'...
copying path '/nix/store/g8p7crgbkpz5zg5fix180l28d2lgz94c-perl-5.42.0-env' from 'https://cache.nixos.org'...
copying path '/nix/store/s4fl727sc2lrcc6z7yygm7si8iwxm9h1-perl-5.42.0-env' from 'https://cache.nixos.org'...
copying path '/nix/store/v5nr4phfz5m886i4ln5svn3cvdz5jx8l-perl-5.42.0-env' from 'https://cache.nixos.org'...
copying path '/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9' from 'https://cache.nixos.org'...
copying path '/nix/store/xwpqh0yzv7k8q9rd21gv73854jvasngk-perl-5.42.0-env' from 'https://cache.nixos.org'...
copying path '/nix/store/mdjl6nphk6xaxvk2kdilx9dwx7g7is1w-moreutils-0.70' from 'https://cache.nixos.org'...
copying path '/nix/store/zvnw1680fwl1k6cl7xzhhrgsy3sq4181-aws-c-io-0.22.0' from 'https://cache.nixos.org'...
copying path '/nix/store/fkzm58nfnsm92psfggg75ihq29ja1fyp-perl5.42.0-File-MimeInfo-0.33' from 'https://cache.nixos.org'...
copying path '/nix/store/41hfkx6xb65vrni7c069zswilgqmm83x-perl5.42.0-HTML-Parser-3.81' from 'https://cache.nixos.org'...
copying path '/nix/store/abd4q3bry0j26yxnwwbgxwj6bdhkrc88-perl5.42.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'...
copying path '/nix/store/z92j33bqka9563p53549wbzz0lq06709-bind-9.20.24-host' from 'https://cache.nixos.org'...
copying path '/nix/store/m68xir4xrrad9hidxhvy2gibf2sk2r15-perl5.42.0-HTTP-Daemon-6.17' from 'https://cache.nixos.org'...
copying path '/nix/store/4ig5yxmsb6372g31fjwngnmyl1lnkknv-perl5.42.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'...
copying path '/nix/store/9pnfm1nn2r9kpy5b186lqah0bm9466hs-netpbm-11.13.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/yvj64swn2m15kka56is116532l2alvq5-aws-c-event-stream-0.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/kd83ihdc98dv3fs0mb4bbnasxhdkiird-aws-c-http-0.10.4' from 'https://cache.nixos.org'...
copying path '/nix/store/ppxba0slb94s8n398djv5524iz9fm1cs-perl5.42.0-CGI-4.59' from 'https://cache.nixos.org'...
copying path '/nix/store/nh8lz196bq583nd5mrk893qk4772dpbc-perl5.42.0-X11-Protocol-0.56' from 'https://cache.nixos.org'...
copying path '/nix/store/6zjsi3arbfgbmhj9c7bqk9mgd5glcq1r-boot.json' from 'https://cache.nixos.org'...
copying path '/nix/store/iwvks829gwh94cnvgxvvvdppd258r9nv-boot.json' from 'https://cache.nixos.org'...
copying path '/nix/store/i5qabjqr6hb51qmbg37n009fykfl67f8-etc-shells' from 'https://cache.nixos.org'...
copying path '/nix/store/lm41c7chc4r259afsi99v0rqn6bg79vk-iptables-1.8.13' from 'https://cache.nixos.org'...
copying path '/nix/store/2r4vkiiczl3wbkxzdm4947vbc5hg635x-nix-info' from 'https://cache.nixos.org'...
copying path '/nix/store/0g2hwwr5b0slbi7qn992y8yliqrwz0rb-nixos-firewall-tool-26.11' from 'https://cache.nixos.org'...
copying path '/nix/store/3zk9744r2rj11b5w5q7z28wvhwir9by3-perl5.42.0-CGI-Fast-2.16' from 'https://cache.nixos.org'...
copying path '/nix/store/2qkvl63rdry04ivf3sky9a11mhslxnyv-aws-c-auth-0.9.1' from 'https://cache.nixos.org'...
copying path '/nix/store/b2hi5cw9n1pbvw8jrh6ry8jn4j8nhi6c-shadow-4.19.4-man' from 'https://cache.nixos.org'...
copying path '/nix/store/iz2l07am61yb9qg39bn31axsb984qpqv-set-environment' from 'https://cache.nixos.org'...
copying path '/nix/store/6jphlr7f8adnrgvi34msvgnmcm1qz7vd-perl5.42.0-libwww-perl-6.72' from 'https://cache.nixos.org'...
copying path '/nix/store/dcyd3k01988mgcjndnfxbh0qm787jh5j-rustc-bootstrap-1.95.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ws1jzkk2xd2554mn8fcxxkxq4g0sysgc-perl5.42.0-XML-SAX-Base-1.09' from 'https://cache.nixos.org'...
copying path '/nix/store/3vdi224qcvjx81l643zchd9mvcl8miyd-aws-c-mqtt-0.13.3' from 'https://cache.nixos.org'...
copying path '/nix/store/mcihgd7swciqazqhygblqggmby350rl7-simdjson-4.6.4' from 'https://cache.nixos.org'...
copying path '/nix/store/vkn3sbjx1mwr8miir649lp0w1hchszcn-simdutf-6.5.0' from 'https://cache.nixos.org'...
copying path '/nix/store/026dr1aa94hb0gp2pyzjxyvmcgdy5j8d-simdutf-9.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/zbkd7xawi3g72kx6vmmcx686dn3vfsla-etc-profile' from 'https://cache.nixos.org'...
copying path '/nix/store/aihr6xrv715f12w3k86n02ijccd2j8kf-perl5.42.0-XML-SAX-1.02' from 'https://cache.nixos.org'...
copying path '/nix/store/qv8wizskbvabi6bivkbx63nl35qkzpfp-aws-c-s3-0.8.7' from 'https://cache.nixos.org'...
copying path '/nix/store/9qhcl1sms7bxa5pcf9k4fj9wvq7fjh1r-simple-dark-gray-bootloader-2018-08-28' from 'https://cache.nixos.org'...
copying path '/nix/store/bg96q42d184i3a2pb2i7dd4w8a65z3f9-perl5.42.0-XML-Parser-2.46' from 'https://cache.nixos.org'...
copying path '/nix/store/0n5zm49dlr7vrgzy2065bqqwy0y3dpvg-snappy-1.2.2' from 'https://cache.nixos.org'...
copying path '/nix/store/yj94ffph8f6g2zn36kky986nk8q0xnch-socat-1.8.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/ydg46632kcwa5zg0zb5pynr07rnhf1am-sound-theme-freedesktop-0.8' from 'https://cache.nixos.org'...
copying path '/nix/store/12cm2m4pdfanj5li94hwxpdfzrfdfngj-sqlite-3.51.2' from 'https://cache.nixos.org'...
copying path '/nix/store/pfaam25wgs7ls2bfmq8mdqdmnhbk7j2f-sqlite-3.51.2-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/w7kv0f7nh5mmywnxjlzmy3bcj57xkgxp-perl5.42.0-XML-LibXML-2.0210' from 'https://cache.nixos.org'...
copying path '/nix/store/6lfrlvmyg2dh50zid00d3mr7zpn7dxx2-storage.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/sliwpszl1rk1ij7n5cxw0y6jj48r0p7k-ada-3.4.4' from 'https://cache.nixos.org'...
copying path '/nix/store/nhdzdp2xxbpa6r9wpi5zbmvwlvqlq2dc-aws-crt-cpp-0.34.3' from 'https://cache.nixos.org'...
copying path '/nix/store/afkryhd3wfa29958lc3b1fxjxb60zl6k-strace-7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/jn9b394ifr7j997693lsaal2fb6119ai-perl5.42.0-XML-Twig-3.52' from 'https://cache.nixos.org'...
copying path '/nix/store/67gd1jz8fp4pqb09wws80z9jykx8ykd0-strace-7.1-man' from 'https://cache.nixos.org'...
copying path '/nix/store/ldixb9i4r4wb5rf00ysx9z642nh7dk1c-stub-ld-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/6cdh7c9wa8sd3mxc4zap4paqp4ib7mbs-sudo-1.9.17p2-man' from 'https://cache.nixos.org'...
copying path '/nix/store/ylsmb1bpln0fikpl2d453gravhfs3wy8-sudoers' from 'https://cache.nixos.org'...
copying path '/nix/store/pq1hdv2iw524jxf3wls1zbcr2rjl245v-perl-5.42.0-env' from 'https://cache.nixos.org'...
copying path '/nix/store/15500fr0qi3zl4b3k58jl676lay3jl4w-system-generators' from 'https://cache.nixos.org'...
copying path '/nix/store/2gcbx35vf30yyv2ps7i0dhjqvxm51lpv-system-sendmail-1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/in11q87j703qqzjciqydp1rigik893zs-system-shutdown' from 'https://cache.nixos.org'...
copying path '/nix/store/ngmx6kzlzapwvdp5nw00aibbfn2pmnrz-systemd-260.2-man' from 'https://cache.nixos.org'...
copying path '/nix/store/k2r54ag8hsyvcyhhi3g28yc1xcnmma8l-tarsum' from 'https://cache.nixos.org'...
copying path '/nix/store/c8mrrp6s3rjfbqn47ihlicazjabkji6j-texinfo-7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/iws4jw7h8a8id6akyirv9hfivr13ar0d-nixos-tmpfiles.d' from 'https://cache.nixos.org'...
copying path '/nix/store/j3mbcpbq0k9w523jz8lahkh6a16vx1jg-texinfo-interactive-7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/k5369naykh8b03hhp48g65xmlb76w8wm-time-1.10' from 'https://cache.nixos.org'...
copying path '/nix/store/l584clsqkn91q4vs39514dzhsyh7qjwg-time-1.10-info' from 'https://cache.nixos.org'...
copying path '/nix/store/0hin4abpq9yk7zrl1x0v0yaw1x8yjpy6-nix-store-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/a2h42s6p2xs0sk3hqfx973jlnvxzynbc-nss-3.112.5' from 'https://cache.nixos.org'...
copying path '/nix/store/w1cmsd5kg0jsj76cxj1vgfrsw3gk86yh-sqlite-3.51.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/51wviqypjlya8xidz9k0s211gwgjza5j-ty-0.0.54' from 'https://cache.nixos.org'...
copying path '/nix/store/kh4j2kji7i38viz4h0cf6kbv9fnvhnkg-unbound-1.25.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/2irdcdzd93abyb8v3508dd9ybrpqbdb3-unit--.slice' from 'https://cache.nixos.org'...
copying path '/nix/store/bwcichvz2bam85hjknmw5fdkn3fbf5bv-unit-40-eth1.link' from 'https://cache.nixos.org'...
copying path '/nix/store/r589gqdcimgn6zfwr3jrh7chk2nk7fq2-unit-console-getty.service-disabled' from 'https://cache.nixos.org'...
copying path '/nix/store/j66pv6qwka515g3w5l6cjc67wnm7cjg5-unit-dbus.socket' from 'https://cache.nixos.org'...
copying path '/nix/store/6l71c6239mc0hh7hks1bgr5xn6m2d1fg-unit-fs.target' from 'https://cache.nixos.org'...
copying path '/nix/store/q46wwj5l7bzq905d53ypgc3bcll7v51c-unit-fstrim.timer' from 'https://cache.nixos.org'...
copying path '/nix/store/n5b4j979cpdanxjrji3lw8j9p3kyw5sl-unit-getty.target' from 'https://cache.nixos.org'...
copying path '/nix/store/z49s8zpdckv2jbl1kbzdhl48z3f7hqv7-gnutls-3.8.13' from 'https://cache.nixos.org'...
copying path '/nix/store/wafk57mmrrzj37gnv6zckxq4chx0lh4w-unit-keys.target' from 'https://cache.nixos.org'...
copying path '/nix/store/669mx4s73gzklmr9w3s13vv24kl1wlg8-unit-local-fs.target' from 'https://cache.nixos.org'...
copying path '/nix/store/kyi1a5ab8zrvybmfbl1xnyzr84q4kiwa-unit-multi-user.target' from 'https://cache.nixos.org'...
copying path '/nix/store/dffhwy5x0zn279wdyjx4na7dvgvhvanl-unit-network.target' from 'https://cache.nixos.org'...
copying path '/nix/store/ca9znjh12i6z67vy3blhkybdkdncq6az-unit-networking-scripted.target' from 'https://cache.nixos.org'...
copying path '/nix/store/2xdfvwmz1d8awx30zqn5xm0q4fi35cz0-nix-fetchers-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/fw3r0zah42cyp44dz2arqncwws4cb87a-nix-main-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/bl8v0h6s2b1kvrbknzgj0ha4046mm7bf-unit-nix-daemon.socket' from 'https://cache.nixos.org'...
copying path '/nix/store/w6i3b2zjby3v7bm16kjzg0gvb1cglhpb-unit-nixos-fake-graphical-session.target' from 'https://cache.nixos.org'...
copying path '/nix/store/bvy3adpa63azxqa2cawki1rjkaiy6r2v-unit-podman-prune.timer' from 'https://cache.nixos.org'...
copying path '/nix/store/azrl6vzchylygh5y93cv348qaayf306r-unit-podman.socket' from 'https://cache.nixos.org'...
copying path '/nix/store/gkxbhi6pmfm54wlgi9yplkk09lhzj2yv-unit-podman.socket' from 'https://cache.nixos.org'...
copying path '/nix/store/k82qcnzy95a4ndwxliv362986fxz5f6v-unit-remote-fs.target' from 'https://cache.nixos.org'...
copying path '/nix/store/z3g3na0b16536a212sy9wl1nw2wgj6zl-unit-run-initramfs.mount' from 'https://cache.nixos.org'...
copying path '/nix/store/aisrpa3qara3yh5k69zmhb5mvdydpd0q-unit-run-wrappers.mount' from 'https://cache.nixos.org'...
copying path '/nix/store/ylirzjzp6fxm8xdp8547kbbshbwydxs2-libmicrohttpd-1.0.2' from 'https://cache.nixos.org'...
copying path '/nix/store/33bga4n11slm9fpy1aqgp89iqsfkpcwk-unit-script-backdoor-start' from 'https://cache.nixos.org'...
copying path '/nix/store/gymvprlk8acqgjhnm7sgy2gg1m8qq56r-unit-script-network-addresses-eth1-pre-stop' from 'https://cache.nixos.org'...
copying path '/nix/store/prs3vvry5dw9gqy7frwg1ny119swakjs-nix-expr-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/vj3simc82snai3riydajn15ad31vlgjp-unit-script-network-addresses-eth1-start' from 'https://cache.nixos.org'...
copying path '/nix/store/yk07p83rx0rdp2q7r4lxqfs4b9ylhs19-unit-script-network-addresses-eth1-start' from 'https://cache.nixos.org'...
copying path '/nix/store/ghaf19icid0ys1m6x7g36vkgpkkkfbgn-unit-script-network-local-commands-start' from 'https://cache.nixos.org'...
copying path '/nix/store/8ddvy2zhj60rch79sfx2b6snnwmgizgi-unit-script-post-boot-pre-stop' from 'https://cache.nixos.org'...
copying path '/nix/store/0hgirfd8sn1kbbg8b4hr31myhvc0r414-unit-script-post-boot-start' from 'https://cache.nixos.org'...
copying path '/nix/store/m6f9z0z77y9ighm80fj6q7jd6w7619yn-unit-script-prepare-kexec-start' from 'https://cache.nixos.org'...
copying path '/nix/store/di4wmka9b1bjvrqfb2cp58zhg0vq9jaz-unit-script-resolvconf-start' from 'https://cache.nixos.org'...
copying path '/nix/store/svlrdldyivj4wzl56c3ql1sn0j4qwdh8-unit-script-sleep-actions-pre-stop' from 'https://cache.nixos.org'...
copying path '/nix/store/5h2mvb7i7wjs4ras4pd5g2g8vp0wgv5z-unit-script-sleep-actions-start' from 'https://cache.nixos.org'...
copying path '/nix/store/mhdnwqp3havycfnkqc9s101jspy30yy8-unit-serial-getty-hvc0.service-disabled' from 'https://cache.nixos.org'...
copying path '/nix/store/9hx1vf28gb72hiwszbgjwa2898rcgv6b-unit-serial-getty-ttyS0.service-disabled' from 'https://cache.nixos.org'...
copying path '/nix/store/614lnzzpc61gzcwa4ar5m0n8p3jrzb8w-unit-sysinit-reactivation.target' from 'https://cache.nixos.org'...
copying path '/nix/store/1pjkklppppvd8lgc1vc4smzh080g7xmf-unit-system.slice' from 'https://cache.nixos.org'...
copying path '/nix/store/2d6j2bp0bj4kwilf2rnc1xgl6madcv34-unit-systemd-journald-audit.socket' from 'https://cache.nixos.org'...
copying path '/nix/store/pc0fnz5hpdphabj6raz1s3xhg925cjhc-unit-systemd-tmpfiles-clean.timer' from 'https://cache.nixos.org'...
copying path '/nix/store/vwfmljzmci7c55p7mr36p27zs16rra3j-nix-flake-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/hhgsyka8y2j1ay19pdiqyxa3jrkvzjnr-unit-user.slice' from 'https://cache.nixos.org'...
copying path '/nix/store/iymsdj1yqiy7d8pylqvjqxqiqb9lqq94-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/j8rd1874qg0k0gpf855b8hipvp5qx0rp-user-generators' from 'https://cache.nixos.org'...
copying path '/nix/store/0bnyx77837hyyixjg7jxjwv6klkcyc52-useradd' from 'https://cache.nixos.org'...
copying path '/nix/store/xaap0vhf6fgh19zg3hcdjqbb3n7nwfpc-users-groups.json' from 'https://cache.nixos.org'...
copying path '/nix/store/jcayvijkha808wgm32csczn7hh8a7c1n-usr-bin-env' from 'https://cache.nixos.org'...
copying path '/nix/store/c2ndp3f1lxh38zp3ydm85qb52rcw97dn-util-linux-2.42' from 'https://cache.nixos.org'...
copying path '/nix/store/79qcw9avkg62pr3qkb2rgrdrs4axh41v-util-linux-2.42-man' from 'https://cache.nixos.org'...
copying path '/nix/store/nvzf6a62pyd9fsddawhl2dwhm7sjcby4-util-linux-minimal-2.42-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/0qdnzsvkajxygnx9i70dbg6bfn1mf23f-util-linux-minimal-2.42-login' from 'https://cache.nixos.org'...
copying path '/nix/store/z8sp8bniwl5mxqnqprrjzsvhyhx94waz-nix-cmd-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/2z5wwsf8bfjslgf53p4z208sb75h3x7b-uvwasi-0.0.23' from 'https://cache.nixos.org'...
copying path '/nix/store/pr27j8nm0xl52pq4ylncj9kwjw3b84mk-stdenv-linux' from 'https://cache.nixos.org'...
copying path '/nix/store/sa2dgrpxj4w7wvkdij7mslrays3ij3w9-vconsole.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/s7yxm6mq44r8n1j735mb68wp4cngf2l2-vde2-2.3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/b0hccb3ymxnjnlam3km2rw4inkll7dal-vhost-device-vsock-0.3.0' from 'https://cache.nixos.org'...
copying path '/nix/store/y8h7c2g2n541znib07aaplpjhqjr9j8k-which-2.23' from 'https://cache.nixos.org'...
copying path '/nix/store/nhxyj64bd4a60ymgb0naxcmmrjkqiddx-which-2.23-info' from 'https://cache.nixos.org'...
copying path '/nix/store/r235qy5rk92frykykazm1smdqcirn22d-which-2.23-man' from 'https://cache.nixos.org'...
copying path '/nix/store/bv90l7ic5p0alcjqlcwmgxf76zx3zg20-systemd-minimal-libs-260.2' from 'https://cache.nixos.org'...
building '/nix/store/jmpa9svs7abv9fvqrmxfpcl55sfwjk8l-Cargo.lock.drv'...
building '/nix/store/m0k3np9n9dmbffnalz60kz5cg93jwsi2-Cargo.toml.drv'...
building '/nix/store/7hkggqrf5rlx3imczga6cayn630jvsym-git-dependencies.drv'...
building '/nix/store/8a3nv8h35w77zfqjq4da911rc5c47yr7-radicle-devcontainer-ci-devcontainer.conf.drv'...
building '/nix/store/1qivyzl3pw7hmqyyxhmakz83rqpiahf5-radicle-e2e-fixture-config.json.drv'...
building '/nix/store/kpfjzvym247qcmarzi24w7c3i6acchvn-radicle-e2e-fixture-repo.drv'...
building '/nix/store/a72fxbm8pr7c422a9lcnmk7jx5ypxqza-unit-radicle-devcontainer-ci-cleanup-devcontainer.timer.drv'...
building '/nix/store/m8hm4i39bm8z1a3f762rh6vi84kaaxxl-unpack-base16ct-0.2.0.drv'...
building '/nix/store/x1kg5lmnbf6p7hwympqvpym6xv111l0h-unpack-base64-0.21.7.drv'...
building '/nix/store/kd0yblzdg8yg6l7q2yfcf0cnfha7x4z1-unpack-base64-0.22.1.drv'...
building '/nix/store/765raplzaz7m7sh3rvaqb6jdf4mxjpmh-unpack-block-buffer-0.10.4.drv'...
building '/nix/store/yccvjqn8z82fs0v6f3y10sw26vf3nfvg-unpack-byteorder-1.5.0.drv'...
building '/nix/store/bj226wsr2x4xffqaaiz5p7wxcvsbb6zq-unpack-cfg_aliases-0.2.1.drv'...
building '/nix/store/pavsm9ajbykn112maqls0zjf3rfcwsx9-unpack-const-oid-0.9.6.drv'...
building '/nix/store/xgs5y5llnw4d6vg9xzyl64sd0sw2iiss-unpack-cpufeatures-0.2.17.drv'...
building '/nix/store/0014f4a0ynyh5wwcl5j6r954l014hw4h-unpack-crypto-bigint-0.5.5.drv'...
building '/nix/store/bsik1z38c6idqddpqhjhimxvnqwdbpbd-unpack-digest-0.10.7.drv'...
building '/nix/store/ch89zd4lkx29y10vkla0mq5r2vpaxvpz-unpack-ecdsa-0.16.9.drv'...
building '/nix/store/fq6z1bfk97vi5l95mbf3cxdxxphxfwnr-unpack-elliptic-curve-0.13.8.drv'...
building '/nix/store/ylbw4qbg0zl3xb95y8nzp13iwh832p21-unpack-encoding_rs-0.8.35.drv'...
building '/nix/store/xpy4yzzyis9lqr598k9scw2by0qz8ma1-unpack-equivalent-1.0.2.drv'...
building '/nix/store/g3v7cvvnf6y47lgpxlyfx0bl05khxcxp-unpack-fnv-1.0.7.drv'...
building '/nix/store/byc9dfj23ny0dgq3ymc8dwj1mqf9h9fv-unpack-generic-array-0.14.7.drv'...
building '/nix/store/1239164gs75cka8l1z0n6chjfri24s9l-unpack-group-0.13.0.drv'...
building '/nix/store/lswiq1n2rxhlwinz40kmd3bnppd9aa9v-unpack-hashbrown-0.14.5.drv'...
building '/nix/store/ay9vrhzaa4byhjb2wahljahhdy0pmy33-unpack-heck-0.5.0.drv'...
building '/nix/store/3diwz7i9i08v0hb4yd71q4m0bgmbk2c3-unpack-hmac-0.12.1.drv'...
building '/nix/store/zivcawvlzccfz6hqcrr6aqpwjdmyjp3r-unpack-ident_case-1.0.1.drv'...
building '/nix/store/vp2j2w5rywz04yfskx6dmv11bwdya5aw-unpack-lazy_static-1.5.0.drv'...
building '/nix/store/mq7qy52930pakb7p2f7nxrv4ijch0p3m-unpack-mime-0.3.17.drv'...
building '/nix/store/30lh1ynbsmljw7bx7mqg0rp2a9gsrzb4-unpack-mime_guess-2.0.5.drv'...
building '/nix/store/jlr356pp2251b9irq1n292ia2c5cyk7j-unpack-minimal-lexical-0.2.1.drv'...
building '/nix/store/yd3wkmbshp7gbgffknq3kdmzwhwky9vb-unpack-nix-0.29.0.drv'...
building '/nix/store/i3k80rgsvp0sm610131k8ff9df6h05cv-unpack-nom-7.1.3.drv'...
building '/nix/store/dam2pxinqf61ckwsrp2dyx9aki10pcyx-unpack-num-integer-0.1.46.drv'...
building '/nix/store/acakgc765dbs08wbv5vqbp3kz9a8m6yb-unpack-num-iter-0.1.45.drv'...
building '/nix/store/0hld73wlpc0sns559v39b2krbmzw66qk-unpack-num-traits-0.2.19.drv'...
building '/nix/store/yw5s76fcljw0zs3i6n8xg8qn5h9514xg-unpack-p256-0.13.2.drv'...
building '/nix/store/k6idnzp58kaw5ip1q1v8nl1iqw7v5vq0-unpack-pem-rfc7468-0.7.0.drv'...
building '/nix/store/yb1azf25rfm47r3avfrglghidlsnlzv6-unpack-pkcs1-0.7.5.drv'...
building '/nix/store/5gvg7kvjz0y20y3ihccv7s7q7q5cjdvz-unpack-pkcs8-0.10.2.drv'...
building '/nix/store/i0697m4fbpc8k30va9rl7i9avf3vqd6b-unpack-powerfmt-0.2.0.drv'...
building '/nix/store/1i6qj5chm7d0nr9wc79fx7axwk0bvmdg-unpack-ppv-lite86-0.2.21.drv'...
building '/nix/store/bw6mx4ywkk1f8bd5x8lmdwr2wm6syhr2-unpack-primeorder-0.13.6.drv'...
building '/nix/store/ldy60vgihfwy6c3s6xxvwhh786xrwf0a-unpack-rand_chacha-0.3.1.drv'...
building '/nix/store/ynhn4hs135h13kf7igrd100igxxh6pzh-unpack-rand_core-0.6.4.drv'...
building '/nix/store/5xs4ww1i7lmxm9ap4n766xim7vwfbh33-unpack-rfc6979-0.4.0.drv'...
building '/nix/store/ixmzvlfkbq2sfr6f1wf38m85m8ys5nyh-unpack-same-file-1.0.6.drv'...
building '/nix/store/g144a0gr4ral3ch0haq81qfj1h1d19h5-unpack-sec1-0.7.3.drv'...
building '/nix/store/b4hzc67xi73n89dggv4xl8yaj25699f8-unpack-serde_yaml-0.9.34+deprecated.drv'...
building '/nix/store/y4q0y9r7ss35ll86iffn3fdp6qxhmrrx-unpack-sharded-slab-0.1.7.drv'...
building '/nix/store/d6d1ky1gx2jhnm28zxdgv5f01q2dlcys-unpack-signature-1.6.4.drv'...
building '/nix/store/vxyji46slpw0s1diqyzyvkc0vxl58csg-unpack-signature-2.2.0.drv'...
building '/nix/store/02hsz45w4qkhsr5qys7sw7azpmz46ddr-unpack-spin-0.9.8.drv'...
building '/nix/store/vz6l4y4k0w12a8vbd5wf3mk5mlv8az6l-unpack-spki-0.7.3.drv'...
building '/nix/store/5rqb7a133a47ms9chba7fv4z2n2knqh8-unpack-strsim-0.11.1.drv'...
building '/nix/store/cg299z8s5nrsq5gix66nx04qbl1bxsp0-unpack-subtle-2.6.1.drv'...
building '/nix/store/clngf20qlmwzkiizh47580b8y32ml0nf-unpack-syn-1.0.109.drv'...
building '/nix/store/4q5fqv8j146wp8hi2vmh6x88frgxcap6-unpack-thiserror-1.0.69.drv'...
building '/nix/store/ycqia6prwfizy1gn7a0b8iw8hc3yz0ps-unpack-thiserror-impl-1.0.69.drv'...
building '/nix/store/p42zmnxv42n1dlwcwkbif2b28jfm47p1-unpack-tinyvec_macros-0.1.1.drv'...
building '/nix/store/b37xsgvjg0ghxscf47j08wss5k7ycddh-unpack-tracing-log-0.2.0.drv'...
building '/nix/store/xcsa1xyi1czjmrp0yzhw28avql8yrgqf-unpack-tracing-serde-0.2.0.drv'...
building '/nix/store/rckyg7fj9ikl53v8g7jcwwk3kf72ixas-unpack-ucd-trie-0.1.7.drv'...
building '/nix/store/j710v54qbgly4qq2j8hl5kvz29abx9nv-unpack-unsafe-libyaml-0.2.11.drv'...
building '/nix/store/p9262yqbmxzqgwhm6cxc5v3q5xy08qwh-unpack-utf8_iter-1.0.4.drv'...
building '/nix/store/p7hmy7yr3zfb8h1a5q6m9b0izvk5fjav-unpack-utf8parse-0.2.2.drv'...
building '/nix/store/mpdcga53cza8gr2i632q2r4mcfsiz66j-unpack-valuable-0.1.1.drv'...
building '/nix/store/ln41ss68n27cjz41k10lndh2d054z721-unpack-vcpkg-0.2.15.drv'...
building '/nix/store/nmawlrrn5q3axy353v62054vz59n751v-unpack-version_check-0.9.5.drv'...
building '/nix/store/mw4w1rr13yamrdv5bwrbvd1psl6aqb9i-unpack-walkdir-2.5.0.drv'...
building '/nix/store/dxlfswnd5v7i9kb8ckd483wlr4yf3252-unpack-winapi-0.3.9.drv'...
building '/nix/store/n6g3f82bxxmvy0bmqxk556hrggs2dypr-unpack-winapi-i686-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/4ja8b1nhn1wv729mdlf4aih276w3z0i7-unpack-winapi-x86_64-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/97f3dy0n9qdwndybbq1nfdfhdsdcbvim-unpack-windows-0.48.0.drv'...
building '/nix/store/9i5kbrnxpdjjxb94lk1jmslq1f5yvrip-unpack-windows-result-0.2.0.drv'...
building '/nix/store/cim09h451jhjfw3imgjd9bj58p4hsrj3-unpack-windows-strings-0.1.0.drv'...
building '/nix/store/i8hdd9nssr14wn7npsz0i6660gqxm5w4-unpack-windows-sys-0.52.0.drv'...
building '/nix/store/bwqyr92y4nv8g6yfy50xzg4wdbs8sgg0-unpack-windows-sys-0.59.0.drv'...
building '/nix/store/90k9szv11zlqk2kyrrm2hn7kwf0hwkwx-unpack-windows-targets-0.48.5.drv'...
building '/nix/store/gqp2jxdcks3zfyz1rqlv6qyzi7a1ss70-unpack-windows-targets-0.52.6.drv'...
building '/nix/store/sa5axmvqbz0vbxk96h89wk32pdx3c4pj-unpack-windows_aarch64_gnullvm-0.48.5.drv'...
building '/nix/store/hj97xlr7k9l6xgzqfn86a2zvxbagdjrz-unpack-windows_aarch64_gnullvm-0.52.6.drv'...
building '/nix/store/w22n1inmavf55jsm3md2rbxpnlfi1avc-unpack-windows_aarch64_msvc-0.48.5.drv'...
building '/nix/store/qxn7qyrfylfmmdrdv0p9npxjj3lhdrhx-unpack-windows_aarch64_msvc-0.52.6.drv'...
building '/nix/store/mvyvza2lrz5spwrq235jnzf0szh14mhg-unpack-windows_i686_gnu-0.48.5.drv'...
building '/nix/store/vhqdg2wj0yk6mgjzmsyxgpl8yzf294h7-unpack-windows_i686_gnu-0.52.6.drv'...
building '/nix/store/b05cmnv1gh28pbdkwqnfi2glngciw92c-unpack-windows_i686_gnullvm-0.52.6.drv'...
building '/nix/store/yh4ncch1yi852wicw1ydgwhd4bim9r5v-unpack-windows_i686_msvc-0.48.5.drv'...
building '/nix/store/jvrkgc7rxhzhb0gf28isszq2f5bmhbx9-unpack-windows_i686_msvc-0.52.6.drv'...
building '/nix/store/4wr36835pkajz49vgamn8f1w7c8m1vs0-unpack-windows_x86_64_gnu-0.48.5.drv'...
building '/nix/store/m3qly5hs1mgqlpiagfap0aph54q7bl6b-unpack-windows_x86_64_gnu-0.52.6.drv'...
building '/nix/store/66mirq68zsi8570zlakk0xqwy9272iiw-unpack-windows_x86_64_gnullvm-0.48.5.drv'...
building '/nix/store/gplf894w9rmsdkpiyldzpaw6m8hxxy99-unpack-windows_x86_64_gnullvm-0.52.6.drv'...
building '/nix/store/h84w990bdky70fsr8xr7blah02knxvxb-unpack-windows_x86_64_msvc-0.48.5.drv'...
building '/nix/store/ha2cr28sb4v5k7qxqfic97sj2iq5qxzm-unpack-windows_x86_64_msvc-0.52.6.drv'...
building '/nix/store/0q0n2sjzagv4riq3w9j5hy1m96zw4zy9-users-groups.json.drv'...
Cargo.lock> structuredAttrs is enabled
Cargo.toml> structuredAttrs is enabled
copying path '/nix/store/5g7ysnh54d3rqnyvqdjfp9gbs5x0kqny-xdg-user-dirs-0.20-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/9jldf06m633n9851m82mcyhibmgczkaz-xwininfo-1.1.6' from 'https://cache.nixos.org'...
copying path '/nix/store/aw8p9pazyyqp29lgypb7gc305k09c1f7-xfsprogs-7.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/005vc6ida2vf8phfck6l9yny6id93wil-yajl-2.1.0-unstable-2024-02-01' from 'https://cache.nixos.org'...
copying path '/nix/store/gxxyccld1qfy1v98hbzv8g9yk1saqx82-zstd-1.5.7-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/wx10pwf5g5fi1vwb1h74ncjlfmdsrvrq-xz-5.8.3-man' from 'https://cache.nixos.org'...
copying path '/nix/store/1b2phk81syp3chqny7m713295rg519v6-zstd-1.5.7-man' from 'https://cache.nixos.org'...
copying path '/nix/store/q2498iin9z3108vxca244k95z928vigc-xxhash-0.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/61vdbwgyzh74vh4q8c89gzqyzdyd29hx-zlib-ng-2.3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/k64v26c6q0qb6mhdbdhsxk5mazlqp3il-xz-5.8.3-doc' from 'https://cache.nixos.org'...
copying path '/nix/store/7y3nkp1ygncjr2gbyxc3lj4zim1m7qnz-zlib-1.3.2-static' from 'https://cache.nixos.org'...
building '/nix/store/xpy4yzzyis9lqr598k9scw2by0qz8ma1-unpack-equivalent-1.0.2.drv'...
building '/nix/store/g3v7cvvnf6y47lgpxlyfx0bl05khxcxp-unpack-fnv-1.0.7.drv'...
building '/nix/store/byc9dfj23ny0dgq3ymc8dwj1mqf9h9fv-unpack-generic-array-0.14.7.drv'...
building '/nix/store/1239164gs75cka8l1z0n6chjfri24s9l-unpack-group-0.13.0.drv'...
building '/nix/store/lswiq1n2rxhlwinz40kmd3bnppd9aa9v-unpack-hashbrown-0.14.5.drv'...
building '/nix/store/ay9vrhzaa4byhjb2wahljahhdy0pmy33-unpack-heck-0.5.0.drv'...
building '/nix/store/3diwz7i9i08v0hb4yd71q4m0bgmbk2c3-unpack-hmac-0.12.1.drv'...
building '/nix/store/zivcawvlzccfz6hqcrr6aqpwjdmyjp3r-unpack-ident_case-1.0.1.drv'...
building '/nix/store/vp2j2w5rywz04yfskx6dmv11bwdya5aw-unpack-lazy_static-1.5.0.drv'...
building '/nix/store/mq7qy52930pakb7p2f7nxrv4ijch0p3m-unpack-mime-0.3.17.drv'...
building '/nix/store/30lh1ynbsmljw7bx7mqg0rp2a9gsrzb4-unpack-mime_guess-2.0.5.drv'...
building '/nix/store/jlr356pp2251b9irq1n292ia2c5cyk7j-unpack-minimal-lexical-0.2.1.drv'...
building '/nix/store/yd3wkmbshp7gbgffknq3kdmzwhwky9vb-unpack-nix-0.29.0.drv'...
building '/nix/store/i3k80rgsvp0sm610131k8ff9df6h05cv-unpack-nom-7.1.3.drv'...
building '/nix/store/dam2pxinqf61ckwsrp2dyx9aki10pcyx-unpack-num-integer-0.1.46.drv'...
building '/nix/store/acakgc765dbs08wbv5vqbp3kz9a8m6yb-unpack-num-iter-0.1.45.drv'...
building '/nix/store/0hld73wlpc0sns559v39b2krbmzw66qk-unpack-num-traits-0.2.19.drv'...
building '/nix/store/yw5s76fcljw0zs3i6n8xg8qn5h9514xg-unpack-p256-0.13.2.drv'...
building '/nix/store/k6idnzp58kaw5ip1q1v8nl1iqw7v5vq0-unpack-pem-rfc7468-0.7.0.drv'...
building '/nix/store/yb1azf25rfm47r3avfrglghidlsnlzv6-unpack-pkcs1-0.7.5.drv'...
building '/nix/store/5gvg7kvjz0y20y3ihccv7s7q7q5cjdvz-unpack-pkcs8-0.10.2.drv'...
building '/nix/store/i0697m4fbpc8k30va9rl7i9avf3vqd6b-unpack-powerfmt-0.2.0.drv'...
building '/nix/store/1i6qj5chm7d0nr9wc79fx7axwk0bvmdg-unpack-ppv-lite86-0.2.21.drv'...
building '/nix/store/bw6mx4ywkk1f8bd5x8lmdwr2wm6syhr2-unpack-primeorder-0.13.6.drv'...
building '/nix/store/ldy60vgihfwy6c3s6xxvwhh786xrwf0a-unpack-rand_chacha-0.3.1.drv'...
building '/nix/store/ynhn4hs135h13kf7igrd100igxxh6pzh-unpack-rand_core-0.6.4.drv'...
building '/nix/store/5xs4ww1i7lmxm9ap4n766xim7vwfbh33-unpack-rfc6979-0.4.0.drv'...
building '/nix/store/ixmzvlfkbq2sfr6f1wf38m85m8ys5nyh-unpack-same-file-1.0.6.drv'...
building '/nix/store/g144a0gr4ral3ch0haq81qfj1h1d19h5-unpack-sec1-0.7.3.drv'...
building '/nix/store/b4hzc67xi73n89dggv4xl8yaj25699f8-unpack-serde_yaml-0.9.34+deprecated.drv'...
building '/nix/store/y4q0y9r7ss35ll86iffn3fdp6qxhmrrx-unpack-sharded-slab-0.1.7.drv'...
building '/nix/store/d6d1ky1gx2jhnm28zxdgv5f01q2dlcys-unpack-signature-1.6.4.drv'...
building '/nix/store/vxyji46slpw0s1diqyzyvkc0vxl58csg-unpack-signature-2.2.0.drv'...
building '/nix/store/02hsz45w4qkhsr5qys7sw7azpmz46ddr-unpack-spin-0.9.8.drv'...
building '/nix/store/vz6l4y4k0w12a8vbd5wf3mk5mlv8az6l-unpack-spki-0.7.3.drv'...
building '/nix/store/5rqb7a133a47ms9chba7fv4z2n2knqh8-unpack-strsim-0.11.1.drv'...
building '/nix/store/cg299z8s5nrsq5gix66nx04qbl1bxsp0-unpack-subtle-2.6.1.drv'...
building '/nix/store/clngf20qlmwzkiizh47580b8y32ml0nf-unpack-syn-1.0.109.drv'...
building '/nix/store/4q5fqv8j146wp8hi2vmh6x88frgxcap6-unpack-thiserror-1.0.69.drv'...
building '/nix/store/ycqia6prwfizy1gn7a0b8iw8hc3yz0ps-unpack-thiserror-impl-1.0.69.drv'...
building '/nix/store/p42zmnxv42n1dlwcwkbif2b28jfm47p1-unpack-tinyvec_macros-0.1.1.drv'...
building '/nix/store/b37xsgvjg0ghxscf47j08wss5k7ycddh-unpack-tracing-log-0.2.0.drv'...
building '/nix/store/xcsa1xyi1czjmrp0yzhw28avql8yrgqf-unpack-tracing-serde-0.2.0.drv'...
building '/nix/store/rckyg7fj9ikl53v8g7jcwwk3kf72ixas-unpack-ucd-trie-0.1.7.drv'...
building '/nix/store/j710v54qbgly4qq2j8hl5kvz29abx9nv-unpack-unsafe-libyaml-0.2.11.drv'...
building '/nix/store/p9262yqbmxzqgwhm6cxc5v3q5xy08qwh-unpack-utf8_iter-1.0.4.drv'...
building '/nix/store/p7hmy7yr3zfb8h1a5q6m9b0izvk5fjav-unpack-utf8parse-0.2.2.drv'...
building '/nix/store/mpdcga53cza8gr2i632q2r4mcfsiz66j-unpack-valuable-0.1.1.drv'...
building '/nix/store/ln41ss68n27cjz41k10lndh2d054z721-unpack-vcpkg-0.2.15.drv'...
building '/nix/store/nmawlrrn5q3axy353v62054vz59n751v-unpack-version_check-0.9.5.drv'...
building '/nix/store/mw4w1rr13yamrdv5bwrbvd1psl6aqb9i-unpack-walkdir-2.5.0.drv'...
building '/nix/store/dxlfswnd5v7i9kb8ckd483wlr4yf3252-unpack-winapi-0.3.9.drv'...
building '/nix/store/n6g3f82bxxmvy0bmqxk556hrggs2dypr-unpack-winapi-i686-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/4ja8b1nhn1wv729mdlf4aih276w3z0i7-unpack-winapi-x86_64-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/97f3dy0n9qdwndybbq1nfdfhdsdcbvim-unpack-windows-0.48.0.drv'...
building '/nix/store/9i5kbrnxpdjjxb94lk1jmslq1f5yvrip-unpack-windows-result-0.2.0.drv'...
building '/nix/store/cim09h451jhjfw3imgjd9bj58p4hsrj3-unpack-windows-strings-0.1.0.drv'...
building '/nix/store/i8hdd9nssr14wn7npsz0i6660gqxm5w4-unpack-windows-sys-0.52.0.drv'...
building '/nix/store/bwqyr92y4nv8g6yfy50xzg4wdbs8sgg0-unpack-windows-sys-0.59.0.drv'...
building '/nix/store/90k9szv11zlqk2kyrrm2hn7kwf0hwkwx-unpack-windows-targets-0.48.5.drv'...
building '/nix/store/gqp2jxdcks3zfyz1rqlv6qyzi7a1ss70-unpack-windows-targets-0.52.6.drv'...
building '/nix/store/sa5axmvqbz0vbxk96h89wk32pdx3c4pj-unpack-windows_aarch64_gnullvm-0.48.5.drv'...
building '/nix/store/hj97xlr7k9l6xgzqfn86a2zvxbagdjrz-unpack-windows_aarch64_gnullvm-0.52.6.drv'...
building '/nix/store/w22n1inmavf55jsm3md2rbxpnlfi1avc-unpack-windows_aarch64_msvc-0.48.5.drv'...
building '/nix/store/qxn7qyrfylfmmdrdv0p9npxjj3lhdrhx-unpack-windows_aarch64_msvc-0.52.6.drv'...
building '/nix/store/mvyvza2lrz5spwrq235jnzf0szh14mhg-unpack-windows_i686_gnu-0.48.5.drv'...
building '/nix/store/vhqdg2wj0yk6mgjzmsyxgpl8yzf294h7-unpack-windows_i686_gnu-0.52.6.drv'...
building '/nix/store/b05cmnv1gh28pbdkwqnfi2glngciw92c-unpack-windows_i686_gnullvm-0.52.6.drv'...
building '/nix/store/yh4ncch1yi852wicw1ydgwhd4bim9r5v-unpack-windows_i686_msvc-0.48.5.drv'...
building '/nix/store/jvrkgc7rxhzhb0gf28isszq2f5bmhbx9-unpack-windows_i686_msvc-0.52.6.drv'...
building '/nix/store/4wr36835pkajz49vgamn8f1w7c8m1vs0-unpack-windows_x86_64_gnu-0.48.5.drv'...
building '/nix/store/m3qly5hs1mgqlpiagfap0aph54q7bl6b-unpack-windows_x86_64_gnu-0.52.6.drv'...
building '/nix/store/66mirq68zsi8570zlakk0xqwy9272iiw-unpack-windows_x86_64_gnullvm-0.48.5.drv'...
building '/nix/store/gplf894w9rmsdkpiyldzpaw6m8hxxy99-unpack-windows_x86_64_gnullvm-0.52.6.drv'...
building '/nix/store/h84w990bdky70fsr8xr7blah02knxvxb-unpack-windows_x86_64_msvc-0.48.5.drv'...
building '/nix/store/ha2cr28sb4v5k7qxqfic97sj2iq5qxzm-unpack-windows_x86_64_msvc-0.52.6.drv'...
building '/nix/store/0q0n2sjzagv4riq3w9j5hy1m96zw4zy9-users-groups.json.drv'...
copying path '/nix/store/pmlqlz93823krppqr4dw5651d0jd5wi9-X-Restart-Triggers-reload-systemd-vconsole-setup' from 'https://cache.nixos.org'...
copying path '/nix/store/ynz9nm6mk5vpv0mh950jm26n6n6gpfpn-dhcpcd-10.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/4i3pvfbjygw3aq73p6gfsn8srsxl2vk2-e2fsprogs-1.47.4' from 'https://cache.nixos.org'...
copying path '/nix/store/lqlgzd7h53xqykzgm5cs30s746sjlsnk-libfido2-1.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/pv8aczqkk94gzxhx0gk168gpxcll0svi-linux-pam-1.7.1' from 'https://cache.nixos.org'...
copying path '/nix/store/yr2bi0ih7kq27rqqpadn4vdi5vpq6fah-nix-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/7cw0q1x70lh28m2p23mz0b0bglxd3z45-lvm2-2.03.39-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/sklp68pzhi1zxdmav50103v50n84snvk-libusb-1.0.29' from 'https://cache.nixos.org'...
copying path '/nix/store/7dl2py4dnp4ffj92r1lq0i54ik1v8kzn-glib-2.88.1' from 'https://cache.nixos.org'...
copying path '/nix/store/ly5j6qg2q3vn899jd9dz0hx11gvjh9f1-procps-4.0.6' from 'https://cache.nixos.org'...
copying path '/nix/store/l9k0anq0z7zz81zcwy035jfwap9ga6rl-python3-3.13.13' from 'https://cache.nixos.org'...
copying path '/nix/store/kpyiq73aiq90cc4nn4y8v4kw9qzhysbh-libsm-1.2.6' from 'https://cache.nixos.org'...
building '/nix/store/yw5s76fcljw0zs3i6n8xg8qn5h9514xg-unpack-p256-0.13.2.drv'...
building '/nix/store/k6idnzp58kaw5ip1q1v8nl1iqw7v5vq0-unpack-pem-rfc7468-0.7.0.drv'...
building '/nix/store/yb1azf25rfm47r3avfrglghidlsnlzv6-unpack-pkcs1-0.7.5.drv'...
building '/nix/store/5gvg7kvjz0y20y3ihccv7s7q7q5cjdvz-unpack-pkcs8-0.10.2.drv'...
building '/nix/store/i0697m4fbpc8k30va9rl7i9avf3vqd6b-unpack-powerfmt-0.2.0.drv'...
building '/nix/store/1i6qj5chm7d0nr9wc79fx7axwk0bvmdg-unpack-ppv-lite86-0.2.21.drv'...
building '/nix/store/bw6mx4ywkk1f8bd5x8lmdwr2wm6syhr2-unpack-primeorder-0.13.6.drv'...
building '/nix/store/ldy60vgihfwy6c3s6xxvwhh786xrwf0a-unpack-rand_chacha-0.3.1.drv'...
building '/nix/store/ynhn4hs135h13kf7igrd100igxxh6pzh-unpack-rand_core-0.6.4.drv'...
building '/nix/store/5xs4ww1i7lmxm9ap4n766xim7vwfbh33-unpack-rfc6979-0.4.0.drv'...
building '/nix/store/ixmzvlfkbq2sfr6f1wf38m85m8ys5nyh-unpack-same-file-1.0.6.drv'...
building '/nix/store/g144a0gr4ral3ch0haq81qfj1h1d19h5-unpack-sec1-0.7.3.drv'...
building '/nix/store/b4hzc67xi73n89dggv4xl8yaj25699f8-unpack-serde_yaml-0.9.34+deprecated.drv'...
building '/nix/store/y4q0y9r7ss35ll86iffn3fdp6qxhmrrx-unpack-sharded-slab-0.1.7.drv'...
building '/nix/store/d6d1ky1gx2jhnm28zxdgv5f01q2dlcys-unpack-signature-1.6.4.drv'...
building '/nix/store/vxyji46slpw0s1diqyzyvkc0vxl58csg-unpack-signature-2.2.0.drv'...
building '/nix/store/02hsz45w4qkhsr5qys7sw7azpmz46ddr-unpack-spin-0.9.8.drv'...
building '/nix/store/vz6l4y4k0w12a8vbd5wf3mk5mlv8az6l-unpack-spki-0.7.3.drv'...
building '/nix/store/5rqb7a133a47ms9chba7fv4z2n2knqh8-unpack-strsim-0.11.1.drv'...
building '/nix/store/cg299z8s5nrsq5gix66nx04qbl1bxsp0-unpack-subtle-2.6.1.drv'...
building '/nix/store/clngf20qlmwzkiizh47580b8y32ml0nf-unpack-syn-1.0.109.drv'...
building '/nix/store/4q5fqv8j146wp8hi2vmh6x88frgxcap6-unpack-thiserror-1.0.69.drv'...
building '/nix/store/ycqia6prwfizy1gn7a0b8iw8hc3yz0ps-unpack-thiserror-impl-1.0.69.drv'...
building '/nix/store/p42zmnxv42n1dlwcwkbif2b28jfm47p1-unpack-tinyvec_macros-0.1.1.drv'...
building '/nix/store/b37xsgvjg0ghxscf47j08wss5k7ycddh-unpack-tracing-log-0.2.0.drv'...
building '/nix/store/xcsa1xyi1czjmrp0yzhw28avql8yrgqf-unpack-tracing-serde-0.2.0.drv'...
building '/nix/store/rckyg7fj9ikl53v8g7jcwwk3kf72ixas-unpack-ucd-trie-0.1.7.drv'...
building '/nix/store/j710v54qbgly4qq2j8hl5kvz29abx9nv-unpack-unsafe-libyaml-0.2.11.drv'...
building '/nix/store/p9262yqbmxzqgwhm6cxc5v3q5xy08qwh-unpack-utf8_iter-1.0.4.drv'...
building '/nix/store/p7hmy7yr3zfb8h1a5q6m9b0izvk5fjav-unpack-utf8parse-0.2.2.drv'...
building '/nix/store/mpdcga53cza8gr2i632q2r4mcfsiz66j-unpack-valuable-0.1.1.drv'...
building '/nix/store/ln41ss68n27cjz41k10lndh2d054z721-unpack-vcpkg-0.2.15.drv'...
building '/nix/store/nmawlrrn5q3axy353v62054vz59n751v-unpack-version_check-0.9.5.drv'...
building '/nix/store/mw4w1rr13yamrdv5bwrbvd1psl6aqb9i-unpack-walkdir-2.5.0.drv'...
building '/nix/store/dxlfswnd5v7i9kb8ckd483wlr4yf3252-unpack-winapi-0.3.9.drv'...
building '/nix/store/n6g3f82bxxmvy0bmqxk556hrggs2dypr-unpack-winapi-i686-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/4ja8b1nhn1wv729mdlf4aih276w3z0i7-unpack-winapi-x86_64-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/97f3dy0n9qdwndybbq1nfdfhdsdcbvim-unpack-windows-0.48.0.drv'...
building '/nix/store/9i5kbrnxpdjjxb94lk1jmslq1f5yvrip-unpack-windows-result-0.2.0.drv'...
building '/nix/store/cim09h451jhjfw3imgjd9bj58p4hsrj3-unpack-windows-strings-0.1.0.drv'...
building '/nix/store/i8hdd9nssr14wn7npsz0i6660gqxm5w4-unpack-windows-sys-0.52.0.drv'...
building '/nix/store/bwqyr92y4nv8g6yfy50xzg4wdbs8sgg0-unpack-windows-sys-0.59.0.drv'...
building '/nix/store/90k9szv11zlqk2kyrrm2hn7kwf0hwkwx-unpack-windows-targets-0.48.5.drv'...
building '/nix/store/gqp2jxdcks3zfyz1rqlv6qyzi7a1ss70-unpack-windows-targets-0.52.6.drv'...
building '/nix/store/sa5axmvqbz0vbxk96h89wk32pdx3c4pj-unpack-windows_aarch64_gnullvm-0.48.5.drv'...
building '/nix/store/hj97xlr7k9l6xgzqfn86a2zvxbagdjrz-unpack-windows_aarch64_gnullvm-0.52.6.drv'...
building '/nix/store/w22n1inmavf55jsm3md2rbxpnlfi1avc-unpack-windows_aarch64_msvc-0.48.5.drv'...
building '/nix/store/qxn7qyrfylfmmdrdv0p9npxjj3lhdrhx-unpack-windows_aarch64_msvc-0.52.6.drv'...
building '/nix/store/mvyvza2lrz5spwrq235jnzf0szh14mhg-unpack-windows_i686_gnu-0.48.5.drv'...
building '/nix/store/vhqdg2wj0yk6mgjzmsyxgpl8yzf294h7-unpack-windows_i686_gnu-0.52.6.drv'...
building '/nix/store/b05cmnv1gh28pbdkwqnfi2glngciw92c-unpack-windows_i686_gnullvm-0.52.6.drv'...
building '/nix/store/yh4ncch1yi852wicw1ydgwhd4bim9r5v-unpack-windows_i686_msvc-0.48.5.drv'...
building '/nix/store/jvrkgc7rxhzhb0gf28isszq2f5bmhbx9-unpack-windows_i686_msvc-0.52.6.drv'...
building '/nix/store/4wr36835pkajz49vgamn8f1w7c8m1vs0-unpack-windows_x86_64_gnu-0.48.5.drv'...
building '/nix/store/m3qly5hs1mgqlpiagfap0aph54q7bl6b-unpack-windows_x86_64_gnu-0.52.6.drv'...
building '/nix/store/66mirq68zsi8570zlakk0xqwy9272iiw-unpack-windows_x86_64_gnullvm-0.48.5.drv'...
building '/nix/store/gplf894w9rmsdkpiyldzpaw6m8hxxy99-unpack-windows_x86_64_gnullvm-0.52.6.drv'...
building '/nix/store/h84w990bdky70fsr8xr7blah02knxvxb-unpack-windows_x86_64_msvc-0.48.5.drv'...
building '/nix/store/ha2cr28sb4v5k7qxqfic97sj2iq5qxzm-unpack-windows_x86_64_msvc-0.52.6.drv'...
building '/nix/store/0q0n2sjzagv4riq3w9j5hy1m96zw4zy9-users-groups.json.drv'...
building '/nix/store/53yfhn3crxx1q7xlw2x8vg8wzvrhm0hd-dummy-src.drv'...
copying path '/nix/store/hiy13xbjr54lx4f7nck27jkrgldvhkbq-freetype-2.14.3' from 'https://cache.nixos.org'...
copying path '/nix/store/xcnqqnhw9hb4j5rjgds2yjryi8qki5f3-gcc-wrapper-15.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0' from 'https://cache.nixos.org'...
copying path '/nix/store/5m564isgjr0irpa6l4g4jf96k5rypxl0-rsync-3.4.4' from 'https://cache.nixos.org'...
copying path '/nix/store/vf5xyym3j82vx9fgb109q5gi7m983x1m-util-linux-2.42-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/kkp6pf5apw5m87cs5xi990pgrm0dnr8c-util-linux-minimal-2.42-swap' from 'https://cache.nixos.org'...
copying path '/nix/store/qi5wng9619p1nvyb1gxcj8v899s3m814-xdg-user-dirs-0.20' from 'https://cache.nixos.org'...
copying path '/nix/store/fysmdm45psr9inrf9y0i8l1vvxlc1y0w-tpm2-tss-4.1.3' from 'https://cache.nixos.org'...
copying path '/nix/store/z74r1zh973778fv1sva38rabypxcnmdg-util-linux-minimal-2.42-mount' from 'https://cache.nixos.org'...
copying path '/nix/store/a9psmsc93llkravrd50rrv8k3dwdw60x-zlib-1.3.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/901v08c2caadg21jidzpy00d3lzjgrdc-zstd-1.5.7-dev' from 'https://cache.nixos.org'...
building '/nix/store/53yfhn3crxx1q7xlw2x8vg8wzvrhm0hd-dummy-src.drv'...
building '/nix/store/cg299z8s5nrsq5gix66nx04qbl1bxsp0-unpack-subtle-2.6.1.drv'...
building '/nix/store/clngf20qlmwzkiizh47580b8y32ml0nf-unpack-syn-1.0.109.drv'...
building '/nix/store/4q5fqv8j146wp8hi2vmh6x88frgxcap6-unpack-thiserror-1.0.69.drv'...
building '/nix/store/ycqia6prwfizy1gn7a0b8iw8hc3yz0ps-unpack-thiserror-impl-1.0.69.drv'...
building '/nix/store/p42zmnxv42n1dlwcwkbif2b28jfm47p1-unpack-tinyvec_macros-0.1.1.drv'...
building '/nix/store/b37xsgvjg0ghxscf47j08wss5k7ycddh-unpack-tracing-log-0.2.0.drv'...
building '/nix/store/xcsa1xyi1czjmrp0yzhw28avql8yrgqf-unpack-tracing-serde-0.2.0.drv'...
building '/nix/store/rckyg7fj9ikl53v8g7jcwwk3kf72ixas-unpack-ucd-trie-0.1.7.drv'...
building '/nix/store/j710v54qbgly4qq2j8hl5kvz29abx9nv-unpack-unsafe-libyaml-0.2.11.drv'...
building '/nix/store/p9262yqbmxzqgwhm6cxc5v3q5xy08qwh-unpack-utf8_iter-1.0.4.drv'...
building '/nix/store/p7hmy7yr3zfb8h1a5q6m9b0izvk5fjav-unpack-utf8parse-0.2.2.drv'...
building '/nix/store/mpdcga53cza8gr2i632q2r4mcfsiz66j-unpack-valuable-0.1.1.drv'...
building '/nix/store/ln41ss68n27cjz41k10lndh2d054z721-unpack-vcpkg-0.2.15.drv'...
building '/nix/store/nmawlrrn5q3axy353v62054vz59n751v-unpack-version_check-0.9.5.drv'...
building '/nix/store/mw4w1rr13yamrdv5bwrbvd1psl6aqb9i-unpack-walkdir-2.5.0.drv'...
building '/nix/store/dxlfswnd5v7i9kb8ckd483wlr4yf3252-unpack-winapi-0.3.9.drv'...
building '/nix/store/n6g3f82bxxmvy0bmqxk556hrggs2dypr-unpack-winapi-i686-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/4ja8b1nhn1wv729mdlf4aih276w3z0i7-unpack-winapi-x86_64-pc-windows-gnu-0.4.0.drv'...
building '/nix/store/97f3dy0n9qdwndybbq1nfdfhdsdcbvim-unpack-windows-0.48.0.drv'...
building '/nix/store/9i5kbrnxpdjjxb94lk1jmslq1f5yvrip-unpack-windows-result-0.2.0.drv'...
building '/nix/store/cim09h451jhjfw3imgjd9bj58p4hsrj3-unpack-windows-strings-0.1.0.drv'...
building '/nix/store/i8hdd9nssr14wn7npsz0i6660gqxm5w4-unpack-windows-sys-0.52.0.drv'...
building '/nix/store/bwqyr92y4nv8g6yfy50xzg4wdbs8sgg0-unpack-windows-sys-0.59.0.drv'...
building '/nix/store/90k9szv11zlqk2kyrrm2hn7kwf0hwkwx-unpack-windows-targets-0.48.5.drv'...
building '/nix/store/gqp2jxdcks3zfyz1rqlv6qyzi7a1ss70-unpack-windows-targets-0.52.6.drv'...
building '/nix/store/sa5axmvqbz0vbxk96h89wk32pdx3c4pj-unpack-windows_aarch64_gnullvm-0.48.5.drv'...
building '/nix/store/hj97xlr7k9l6xgzqfn86a2zvxbagdjrz-unpack-windows_aarch64_gnullvm-0.52.6.drv'...
building '/nix/store/w22n1inmavf55jsm3md2rbxpnlfi1avc-unpack-windows_aarch64_msvc-0.48.5.drv'...
building '/nix/store/qxn7qyrfylfmmdrdv0p9npxjj3lhdrhx-unpack-windows_aarch64_msvc-0.52.6.drv'...
building '/nix/store/mvyvza2lrz5spwrq235jnzf0szh14mhg-unpack-windows_i686_gnu-0.48.5.drv'...
building '/nix/store/vhqdg2wj0yk6mgjzmsyxgpl8yzf294h7-unpack-windows_i686_gnu-0.52.6.drv'...
building '/nix/store/b05cmnv1gh28pbdkwqnfi2glngciw92c-unpack-windows_i686_gnullvm-0.52.6.drv'...
building '/nix/store/yh4ncch1yi852wicw1ydgwhd4bim9r5v-unpack-windows_i686_msvc-0.48.5.drv'...
building '/nix/store/jvrkgc7rxhzhb0gf28isszq2f5bmhbx9-unpack-windows_i686_msvc-0.52.6.drv'...
building '/nix/store/4wr36835pkajz49vgamn8f1w7c8m1vs0-unpack-windows_x86_64_gnu-0.48.5.drv'...
building '/nix/store/m3qly5hs1mgqlpiagfap0aph54q7bl6b-unpack-windows_x86_64_gnu-0.52.6.drv'...
building '/nix/store/66mirq68zsi8570zlakk0xqwy9272iiw-unpack-windows_x86_64_gnullvm-0.48.5.drv'...
building '/nix/store/gplf894w9rmsdkpiyldzpaw6m8hxxy99-unpack-windows_x86_64_gnullvm-0.52.6.drv'...
building '/nix/store/h84w990bdky70fsr8xr7blah02knxvxb-unpack-windows_x86_64_msvc-0.48.5.drv'...
building '/nix/store/ha2cr28sb4v5k7qxqfic97sj2iq5qxzm-unpack-windows_x86_64_msvc-0.52.6.drv'...
building '/nix/store/0q0n2sjzagv4riq3w9j5hy1m96zw4zy9-users-groups.json.drv'...
copying path '/nix/store/xqjbrfarli7v6jnyl9pap9r8l5ziikb1-chsh.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/1gl5mj5cpi3j8ajp3wkkmkfl86vpiz6m-desktop-file-utils-0.28' from 'https://cache.nixos.org'...
copying path '/nix/store/vrp9dc3rcl8gzarvhh5c8dznayp6iwb2-e2fsprogs-1.47.4-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/rldvgvqrmwfwjcxvdds5a3h8v6f9ndqk-chpasswd.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/ajnnsmibnabj24z0ic9k8anxgafsy5zl-groupadd.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/0zzp232518qq3cc293pca9f257xijr7b-groupmems.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/ga7hgba1656wk4hbpyphflnjq2x2997r-cryptsetup-2.8.6' from 'https://cache.nixos.org'...
copying path '/nix/store/lyfl6ran99smi6r7yfvmf7xj8jq6n4ry-btrfs-progs-7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/03iyy5s5016kmggxpb04xrx5rf2bqimj-groupmod.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/3dc62d25sfc4xrl629c3ksakrwn7j0lw-chfn.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/fk62si4ggkxjcz50g1n6jy74n7rbbs5s-groupdel.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/5fd78i1yplqk80drr25x68xx5y6hf1vi-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/3vvvgxggqj0rbvjk46y1n9xg8nbpzk2m-glib-2.88.1-bin' from 'https://cache.nixos.org'...
building '/nix/store/97f3dy0n9qdwndybbq1nfdfhdsdcbvim-unpack-windows-0.48.0.drv'...
building '/nix/store/9i5kbrnxpdjjxb94lk1jmslq1f5yvrip-unpack-windows-result-0.2.0.drv'...
building '/nix/store/cim09h451jhjfw3imgjd9bj58p4hsrj3-unpack-windows-strings-0.1.0.drv'...
building '/nix/store/i8hdd9nssr14wn7npsz0i6660gqxm5w4-unpack-windows-sys-0.52.0.drv'...
building '/nix/store/bwqyr92y4nv8g6yfy50xzg4wdbs8sgg0-unpack-windows-sys-0.59.0.drv'...
building '/nix/store/90k9szv11zlqk2kyrrm2hn7kwf0hwkwx-unpack-windows-targets-0.48.5.drv'...
building '/nix/store/gqp2jxdcks3zfyz1rqlv6qyzi7a1ss70-unpack-windows-targets-0.52.6.drv'...
building '/nix/store/sa5axmvqbz0vbxk96h89wk32pdx3c4pj-unpack-windows_aarch64_gnullvm-0.48.5.drv'...
building '/nix/store/hj97xlr7k9l6xgzqfn86a2zvxbagdjrz-unpack-windows_aarch64_gnullvm-0.52.6.drv'...
building '/nix/store/w22n1inmavf55jsm3md2rbxpnlfi1avc-unpack-windows_aarch64_msvc-0.48.5.drv'...
building '/nix/store/qxn7qyrfylfmmdrdv0p9npxjj3lhdrhx-unpack-windows_aarch64_msvc-0.52.6.drv'...
building '/nix/store/mvyvza2lrz5spwrq235jnzf0szh14mhg-unpack-windows_i686_gnu-0.48.5.drv'...
building '/nix/store/vhqdg2wj0yk6mgjzmsyxgpl8yzf294h7-unpack-windows_i686_gnu-0.52.6.drv'...
building '/nix/store/b05cmnv1gh28pbdkwqnfi2glngciw92c-unpack-windows_i686_gnullvm-0.52.6.drv'...
building '/nix/store/yh4ncch1yi852wicw1ydgwhd4bim9r5v-unpack-windows_i686_msvc-0.48.5.drv'...
building '/nix/store/jvrkgc7rxhzhb0gf28isszq2f5bmhbx9-unpack-windows_i686_msvc-0.52.6.drv'...
building '/nix/store/4wr36835pkajz49vgamn8f1w7c8m1vs0-unpack-windows_x86_64_gnu-0.48.5.drv'...
building '/nix/store/m3qly5hs1mgqlpiagfap0aph54q7bl6b-unpack-windows_x86_64_gnu-0.52.6.drv'...
building '/nix/store/66mirq68zsi8570zlakk0xqwy9272iiw-unpack-windows_x86_64_gnullvm-0.48.5.drv'...
building '/nix/store/gplf894w9rmsdkpiyldzpaw6m8hxxy99-unpack-windows_x86_64_gnullvm-0.52.6.drv'...
building '/nix/store/h84w990bdky70fsr8xr7blah02knxvxb-unpack-windows_x86_64_msvc-0.48.5.drv'...
building '/nix/store/ha2cr28sb4v5k7qxqfic97sj2iq5qxzm-unpack-windows_x86_64_msvc-0.52.6.drv'...
building '/nix/store/0q0n2sjzagv4riq3w9j5hy1m96zw4zy9-users-groups.json.drv'...
copying path '/nix/store/z3xsw1ggynf3qpk7hdsb4xsqijhgjla7-bcache-tools-1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/0kdxyv90bclwbvw10fr28j5i16zrr9m8-curl-8.20.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/jm2hb06dgsk95yrwqq187x9982bjqmdd-gnupg-2.4.9' from 'https://cache.nixos.org'...
copying path '/nix/store/9g5kibhrndz0g7s3i80kcv8wwi6kz47d-libslirp-4.9.3' from 'https://cache.nixos.org'...
copying path '/nix/store/25vwqrg79nc1zkpz6z2ib3zhfn28j6vq-libxt-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/mksx1i8qmgxlvxib2myg4d1faz3x7kmx-fontconfig-2.17.1-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/2gkq62yzbw9kplg5yb6yhf57ckhrhrsd-nix-2.34.7' from 'https://cache.nixos.org'...
copying path '/nix/store/ww2wf5b928m0b53dp2bdifpgqqyfshvb-openssh-10.3p1' from 'https://cache.nixos.org'...
copying path '/nix/store/fpca5by8rjbkv3mxkzzkm9yg4785nfzi-passwd.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/vp4jm49zag4h91q8lqrkaaw8f2z94ld7-linux-6.18.37-modules' from 'https://cache.nixos.org'...
copying path '/nix/store/s0dj8i42jk7657v99jkr71mi7xiv5y66-lvm2-2.03.39-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/scl9b1j2vsl07pp54ahy455232ka7bz5-nodejs-slim-24.16.0' from 'https://cache.nixos.org'...
copying path '/nix/store/c9hiv1bl92xdlf9y7a5z1j69zvib7980-other.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/jxhk9qsal9q83fcanwx2kbgzy9pwaaa2-runuser-l.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/q8kq311rn6m3381j6xximg9d6vy094pf-qemu-host-cpu-only-for-vm-tests-11.0.1-ga' from 'https://cache.nixos.org'...
copying path '/nix/store/s0fgky7z65wqcki5hjn8v8bwy714ry5x-runuser.pam' from 'https://cache.nixos.org'...
building '/nix/store/66mirq68zsi8570zlakk0xqwy9272iiw-unpack-windows_x86_64_gnullvm-0.48.5.drv'...
building '/nix/store/gplf894w9rmsdkpiyldzpaw6m8hxxy99-unpack-windows_x86_64_gnullvm-0.52.6.drv'...
building '/nix/store/h84w990bdky70fsr8xr7blah02knxvxb-unpack-windows_x86_64_msvc-0.48.5.drv'...
building '/nix/store/ha2cr28sb4v5k7qxqfic97sj2iq5qxzm-unpack-windows_x86_64_msvc-0.52.6.drv'...
building '/nix/store/0q0n2sjzagv4riq3w9j5hy1m96zw4zy9-users-groups.json.drv'...
building '/nix/store/rs5adi2rms661a9cmg7ckp02knj0si0b-radicle-e2e-fixture-root.drv'...
copying path '/nix/store/z0zc92vx87chidgnh8hknssrb5dr0zcq-criu-4.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/k3wl6cg7q50zkx47af3msmg1yrg1f203-git-2.54.0' from 'https://cache.nixos.org'...
copying path '/nix/store/2pplli407gv19zabvic99sz5pawiq1pp-python3.13-annotated-types-0.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vn49ilhymsv1acxq7xk6k3gxdjfn9chn-python3.13-appdirs-1.4.4' from 'https://cache.nixos.org'...
copying path '/nix/store/ym603qwyh2hx7p7h700q9xyi80wj709q-python3.13-asttokens-3.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/l22fp7vhwvf6zvhk3mf7wmra6llb1pv7-python3.13-colorama-0.4.6' from 'https://cache.nixos.org'...
copying path '/nix/store/3pszgxh7nlzi1kibvf06h1jh5jpam6zb-python3.13-cbor2-5.8.0' from 'https://cache.nixos.org'...
copying path '/nix/store/cwcw98b43wr4mf4g5w7pmrr795mgcbcd-python3.13-decorator-5.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/3ccyvlpw5kx1ry1j83809nbvpk7vjdwx-python3.13-executing-2.2.1' from 'https://cache.nixos.org'...
building '/nix/store/js9vhdnjzy5m9rarjd7kkh73zmdypqd0-download-adler2-2.0.1.drv'...
building '/nix/store/19f9sz5pxnx83wjzfi6s6crhp4ndbrvp-download-aead-0.5.2.drv'...
building '/nix/store/bdbbjylfq9gn1cdb1plgmsgvhv7rm96l-download-aes-0.8.4.drv'...
building '/nix/store/fgk6cbf6xii9zpn1wgw08k42xjpdxmpm-download-aes-gcm-0.10.3.drv'...
building '/nix/store/89s12vh5408zfbgl82xnqpkm50ivkq9l-download-ahash-0.8.12.drv'...
building '/nix/store/9v4jpm71sxxf5g6f2a9xrmqwk4w9hnn7-download-aho-corasick-1.1.4.drv'...
building '/nix/store/s6xjlpnxyj4gmd9djggclwfxkdcxfdpg-download-aligned-0.4.3.drv'...
building '/nix/store/6mvak7w01m7ar1z4z72zsdpyhw9fqbkb-download-amplify-4.9.0.drv'...
building '/nix/store/1ra7c6ysyqgrb4a886h82m1cs8zcvdr2-download-amplify_derive-4.0.1.drv'...
building '/nix/store/4j2hkzfgpghdb609j95ax4v6jbwzmbxc-download-amplify_num-0.5.4.drv'...
building '/nix/store/kdvsx168vwq6fn7hrfpzcys3y3qzs5w0-download-amplify_syn-2.0.1.drv'...
building '/nix/store/8hj5ks0pdl8kn3qshbdw7paass67l8d8-download-anstream-1.0.0.drv'...
building '/nix/store/2jrzswpzsw2c69zzr8v78iqdsi1c8yz4-download-anstyle-1.0.14.drv'...
building '/nix/store/akqxa5j2w5sxivfa8s134pvwb01shy08-download-anstyle-parse-1.0.0.drv'...
building '/nix/store/mkrgjg4bw658adkqczwlc67x0wx9gc3p-download-anstyle-query-1.1.5.drv'...
building '/nix/store/5kn988xs18acfs6x0pb1ys79y42gyxyw-download-anstyle-wincon-3.0.11.drv'...
building '/nix/store/9mdzm9rsnyjcdbnzcz7qcmr09dr52xbv-download-anyhow-1.0.103.drv'...
building '/nix/store/pvs3j4gmhih37vqcc5aajppm07lb9x6a-download-arraydeque-0.5.1.drv'...
building '/nix/store/fmsb45bmdlmjm49xj1nga45h5dj6jhzf-download-arrayvec-0.7.7.drv'...
building '/nix/store/bb2lw7bjpr0x7c5g5cq1rlb6mi8n0dr5-download-as-slice-0.2.1.drv'...
building '/nix/store/hhx8zrl9azl3207vniawrjpbhcr9hkp2-download-ascii-1.1.0.drv'...
building '/nix/store/q9bk7z9isynx33v6dq28yyssg5c6lrbv-download-askama-0.12.1.drv'...
building '/nix/store/bb87ax43lczsbp44vf931s8l75dcb107-download-askama_derive-0.12.5.drv'...
building '/nix/store/hfzmydl70r9b8j9cg5cbym06vkcwp1an-download-askama_escape-0.10.3.drv'...
building '/nix/store/zmx76zxviiyipld1ds9kr3469achnbky-download-askama_parser-0.2.1.drv'...
building '/nix/store/4vmlyq8j7140536rvx5vnhwpc12ddaxf-download-atom_syndication-0.12.8.drv'...
building '/nix/store/af5yqvbdjg4imm17f53n7rq782fymzr3-download-atomic-0.6.1.drv'...
building '/nix/store/62rjn7sb56wzfly3pblh1p9gwfi09cnb-download-autocfg-1.5.1.drv'...
building '/nix/store/hxlb8v2vmjirnbqj427ghn9kdzwh96bz-download-base-x-0.2.11.drv'...
building '/nix/store/394fsw15fjzdvdcq85b4vd4lb36gh28h-download-base256emoji-1.0.2.drv'...
building '/nix/store/9azq2ymks4zawpysl0r3rh1x8757c271-download-base32-0.4.0.drv'...
building '/nix/store/j2iqcjs4g1n480f5bhfxg03jdpzqnhdz-download-base45-3.2.0.drv'...
building '/nix/store/ndlz9b1vywykvrg3p8q6cgrq27nja718-download-base64ct-1.8.3.drv'...
building '/nix/store/7b0wb3m730ixvkypgnapb3nmy37pza3x-download-basic-toml-0.1.10.drv'...
building '/nix/store/ia6g9xdkcvrp3wm9lf8bwqpg1n7l3a8j-download-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/y2358b2dxwi49v3yzkjncfki5q1y035c-download-bitflags-2.13.0.drv'...
building '/nix/store/52lpzir84c286ij8vfc94magygk3h81y-download-block-padding-0.3.3.drv'...
building '/nix/store/9csr5809zpnhagdi0j1hzmkp0g9k0gnk-download-block2-0.6.2.drv'...
building '/nix/store/d8kbfbn5iq5wwgavzb788vmpimxkdwwc-download-blowfish-0.9.1.drv'...
building '/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv'...
building '/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv'...
building '/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv'...
building '/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv'...
building '/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv'...
building '/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
download-adler2> structuredAttrs is enabled
download-adler2>
download-adler2> trying https://static.crates.io/crates/adler2/2.0.1/download
download-adler2> % Total % Received % Xferd Average Speed Time Time Time Current
download-adler2> Dload Upload Total Spent Left Speed
download-adler2> 100 13366 100 13366 0 0 23229 0 0
download-aead> structuredAttrs is enabled
download-aead>
download-aead> trying https://static.crates.io/crates/aead/0.5.2/download
download-aead> % Total % Received % Xferd Average Speed Time Time Time Current
download-aead> Dload Upload Total Spent Left Speed
download-aead> 100 15509 100 15509 0 0 28643 0 0
download-aes> structuredAttrs is enabled
download-aes>
download-aes> trying https://static.crates.io/crates/aes/0.8.4/download
download-aes> % Total % Received % Xferd Average Speed Time Time Time Current
download-aes> Dload Upload Total Spent Left Speed
download-aes-gcm> structuredAttrs is enabled
download-aes-gcm>
download-aes-gcm> trying https://static.crates.io/crates/aes-gcm/0.10.3/download
download-aes-gcm> % Total % Received % Xferd Average Speed Time Time Time Current
download-aes-gcm> Dload Upload Total Spent Left Speed
download-ahash> structuredAttrs is enabled
download-ahash>
download-ahash> trying https://static.crates.io/crates/ahash/0.8.12/download
download-ahash> % Total % Received % Xferd Average Speed Time Time Time Current
download-ahash> Dload Upload Total Spent Left Speed
download-aho-corasick> structuredAttrs is enabled
download-aho-corasick>
download-aho-corasick> trying https://static.crates.io/crates/aho-corasick/1.1.4/download
download-aho-corasick> % Total % Received % Xferd Average Speed Time Time Time Current
download-aho-corasick> Dload Upload Total Spent Left Speed
download-aligned> structuredAttrs is enabled
download-aligned>
download-aligned> trying https://static.crates.io/crates/aligned/0.4.3/download
download-aligned> % Total % Received % Xferd Average Speed Time Time Time Current
download-aligned> Dload Upload Total Spent Left Speed
download-aligned> 100 10452 100 10452 0 0 27041 0 0
download-amplify> structuredAttrs is enabled
download-amplify>
download-amplify> trying https://static.crates.io/crates/amplify/4.9.0/download
download-amplify> % Total % Received % Xferd Average Speed Time Time Time Current
download-amplify> Dload Upload Total Spent Left Speed
download-amplify_derive> structuredAttrs is enabled
download-amplify_derive>
download-amplify_derive> trying https://static.crates.io/crates/amplify_derive/4.0.1/download
download-amplify_derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-amplify_derive> Dload Upload Total Spent Left Speed
download-amplify_num> structuredAttrs is enabled
download-amplify_num>
download-amplify_num> trying https://static.crates.io/crates/amplify_num/0.5.4/download
download-amplify_num> % Total % Received % Xferd Average Speed Time Time Time Current
download-amplify_num> Dload Upload Total Spent Left Speed
download-amplify_syn> structuredAttrs is enabled
download-amplify_syn>
download-amplify_syn> trying https://static.crates.io/crates/amplify_syn/2.0.1/download
download-amplify_syn> % Total % Received % Xferd Average Speed Time Time Time Current
download-amplify_syn> Dload Upload Total Spent Left Speed
download-anstream> structuredAttrs is enabled
download-anstream>
download-anstream> trying https://static.crates.io/crates/anstream/1.0.0/download
download-anstyle> structuredAttrs is enabled
download-anstyle>
download-anstyle> trying https://static.crates.io/crates/anstyle/1.0.14/download
download-anstyle-parse> structuredAttrs is enabled
download-anstyle-parse>
download-anstyle-parse> trying https://static.crates.io/crates/anstyle-parse/1.0.0/download
download-anstyle-query> structuredAttrs is enabled
download-anstyle-query>
download-anstyle-query> trying https://static.crates.io/crates/anstyle-query/1.1.5/download
download-anstyle-wincon> structuredAttrs is enabled
download-anstyle-wincon>
download-anstyle-wincon> trying https://static.crates.io/crates/anstyle-wincon/3.0.11/download
download-anyhow> structuredAttrs is enabled
radicle-e2e-fixture-root> structuredAttrs is enabled
radicle-e2e-fixture-root> created 123 symlinks in user environment
copying path '/nix/store/04xxxafkhsh8l7grm68wx1srrf45w6wh-nixos-rebuild-ng-26.11' from 'https://cache.nixos.org'...
copying path '/nix/store/67121l3kphg2ad9lc359bbhd1nqvq33c-python3.13-mdurl-0.1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/n97k32kd1dffsp4phzvw431wxhfyxf0w-python3.13-pyyaml-6.0.3' from 'https://cache.nixos.org'...
copying path '/nix/store/kq0731dd3ac221qzzn5mkqi5qsm78ncs-python3.13-remote-pdb-2.1.0' from 'https://cache.nixos.org'...
copying path '/nix/store/vzw28zjszh3miba384pbc3riazynky4c-python3.13-pygments-2.20.0' from 'https://cache.nixos.org'...
copying path '/nix/store/981qasvcd0bc5kl6sn411v3gm549bayv-python3.13-toml-0.10.2' from 'https://cache.nixos.org'...
copying path '/nix/store/4nrcnqz0b0a6x4gv4pn2nwn63a3smxv6-python3.13-traitlets-5.14.3' from 'https://cache.nixos.org'...
copying path '/nix/store/grx6892wf0s7dw1kjx3librplg1cgw06-python3.13-ruamel-base-1.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/jmmdz0vkj4cphlyf6y7gdngm5hfhwisl-python3.13-ruamel-yaml-clib-0.2.15' from 'https://cache.nixos.org'...
copying path '/nix/store/qk5h6dqi1vkn6la8rvxjixczsly1wxj2-python3.13-six-1.17.0' from 'https://cache.nixos.org'...
copying path '/nix/store/m50vdmm077bnzcwq6nn38zx0cddyr99n-python3.13-tomlkit-0.12.5' from 'https://cache.nixos.org'...
copying path '/nix/store/ssn81asmf6hpiia638crdqhcrfdwwgxs-python3.13-parso-0.8.7' from 'https://cache.nixos.org'...
copying path '/nix/store/lxk8y2siyl31gqdwky7hhrd164fhjw9p-python3.13-ptyprocess-0.7.0' from 'https://cache.nixos.org'...
copying path '/nix/store/24lnp6kjbxwj3lw5a1x65qipmmjp04wj-python3.13-typing-extensions-4.15.0' from 'https://cache.nixos.org'...
copying path '/nix/store/12gwm2lik7f59iyan5m7bh5ygpfv8664-python3.13-u-msgpack-python-2.8.0' from 'https://cache.nixos.org'...
copying path '/nix/store/g6mbrn4by7yhaxg3dyifslvxjwqmphn4-python3.13-wcwidth-0.6.0' from 'https://cache.nixos.org'...
building '/nix/store/fmsb45bmdlmjm49xj1nga45h5dj6jhzf-download-arrayvec-0.7.7.drv'...
building '/nix/store/bb2lw7bjpr0x7c5g5cq1rlb6mi8n0dr5-download-as-slice-0.2.1.drv'...
building '/nix/store/hhx8zrl9azl3207vniawrjpbhcr9hkp2-download-ascii-1.1.0.drv'...
building '/nix/store/q9bk7z9isynx33v6dq28yyssg5c6lrbv-download-askama-0.12.1.drv'...
building '/nix/store/bb87ax43lczsbp44vf931s8l75dcb107-download-askama_derive-0.12.5.drv'...
building '/nix/store/hfzmydl70r9b8j9cg5cbym06vkcwp1an-download-askama_escape-0.10.3.drv'...
building '/nix/store/zmx76zxviiyipld1ds9kr3469achnbky-download-askama_parser-0.2.1.drv'...
building '/nix/store/4vmlyq8j7140536rvx5vnhwpc12ddaxf-download-atom_syndication-0.12.8.drv'...
building '/nix/store/af5yqvbdjg4imm17f53n7rq782fymzr3-download-atomic-0.6.1.drv'...
building '/nix/store/62rjn7sb56wzfly3pblh1p9gwfi09cnb-download-autocfg-1.5.1.drv'...
building '/nix/store/hxlb8v2vmjirnbqj427ghn9kdzwh96bz-download-base-x-0.2.11.drv'...
building '/nix/store/394fsw15fjzdvdcq85b4vd4lb36gh28h-download-base256emoji-1.0.2.drv'...
building '/nix/store/9azq2ymks4zawpysl0r3rh1x8757c271-download-base32-0.4.0.drv'...
building '/nix/store/j2iqcjs4g1n480f5bhfxg03jdpzqnhdz-download-base45-3.2.0.drv'...
building '/nix/store/ndlz9b1vywykvrg3p8q6cgrq27nja718-download-base64ct-1.8.3.drv'...
building '/nix/store/7b0wb3m730ixvkypgnapb3nmy37pza3x-download-basic-toml-0.1.10.drv'...
building '/nix/store/ia6g9xdkcvrp3wm9lf8bwqpg1n7l3a8j-download-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/y2358b2dxwi49v3yzkjncfki5q1y035c-download-bitflags-2.13.0.drv'...
building '/nix/store/52lpzir84c286ij8vfc94magygk3h81y-download-block-padding-0.3.3.drv'...
building '/nix/store/9csr5809zpnhagdi0j1hzmkp0g9k0gnk-download-block2-0.6.2.drv'...
building '/nix/store/d8kbfbn5iq5wwgavzb788vmpimxkdwwc-download-blowfish-0.9.1.drv'...
building '/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv'...
building '/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv'...
building '/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv'...
building '/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv'...
building '/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv'...
building '/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
download-ahash> 100 43413 100 43413 0 0 83574 0 0
download-amplify> 100 41410 100 41410 0 0 86842 0 0
download-amplify_num> 100 31562 100 31562 0 0 78491 0 0
download-anstream> % Total % Received % Xferd Average Speed Time Time Time Current
download-anstream> Dload Upload Total Spent Left Speed
download-anstyle> % Total % Received % Xferd Average Speed Time Time Time Current
download-anstyle> Dload Upload Total Spent Left Speed
download-anstyle-parse> % Total % Received % Xferd Average Speed Time Time Time Current
download-anstyle-parse> Dload Upload Total Spent Left Speed
download-anyhow>
download-anyhow> trying https://static.crates.io/crates/anyhow/1.0.103/download
download-arraydeque> structuredAttrs is enabled
download-arraydeque>
download-arraydeque> trying https://static.crates.io/crates/arraydeque/0.5.1/download
building '/nix/store/bb2lw7bjpr0x7c5g5cq1rlb6mi8n0dr5-download-as-slice-0.2.1.drv'...
building '/nix/store/hhx8zrl9azl3207vniawrjpbhcr9hkp2-download-ascii-1.1.0.drv'...
building '/nix/store/q9bk7z9isynx33v6dq28yyssg5c6lrbv-download-askama-0.12.1.drv'...
building '/nix/store/bb87ax43lczsbp44vf931s8l75dcb107-download-askama_derive-0.12.5.drv'...
building '/nix/store/hfzmydl70r9b8j9cg5cbym06vkcwp1an-download-askama_escape-0.10.3.drv'...
building '/nix/store/zmx76zxviiyipld1ds9kr3469achnbky-download-askama_parser-0.2.1.drv'...
building '/nix/store/4vmlyq8j7140536rvx5vnhwpc12ddaxf-download-atom_syndication-0.12.8.drv'...
building '/nix/store/af5yqvbdjg4imm17f53n7rq782fymzr3-download-atomic-0.6.1.drv'...
building '/nix/store/62rjn7sb56wzfly3pblh1p9gwfi09cnb-download-autocfg-1.5.1.drv'...
building '/nix/store/hxlb8v2vmjirnbqj427ghn9kdzwh96bz-download-base-x-0.2.11.drv'...
building '/nix/store/394fsw15fjzdvdcq85b4vd4lb36gh28h-download-base256emoji-1.0.2.drv'...
building '/nix/store/9azq2ymks4zawpysl0r3rh1x8757c271-download-base32-0.4.0.drv'...
building '/nix/store/j2iqcjs4g1n480f5bhfxg03jdpzqnhdz-download-base45-3.2.0.drv'...
building '/nix/store/ndlz9b1vywykvrg3p8q6cgrq27nja718-download-base64ct-1.8.3.drv'...
building '/nix/store/7b0wb3m730ixvkypgnapb3nmy37pza3x-download-basic-toml-0.1.10.drv'...
building '/nix/store/ia6g9xdkcvrp3wm9lf8bwqpg1n7l3a8j-download-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/y2358b2dxwi49v3yzkjncfki5q1y035c-download-bitflags-2.13.0.drv'...
building '/nix/store/52lpzir84c286ij8vfc94magygk3h81y-download-block-padding-0.3.3.drv'...
building '/nix/store/9csr5809zpnhagdi0j1hzmkp0g9k0gnk-download-block2-0.6.2.drv'...
building '/nix/store/d8kbfbn5iq5wwgavzb788vmpimxkdwwc-download-blowfish-0.9.1.drv'...
building '/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv'...
building '/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv'...
building '/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv'...
building '/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv'...
building '/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv'...
building '/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/45pn2anzfcx4iyqxsxzg9mzjs2y2pcb4-docker-layer-radicle-e2e-fixture.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
download-aes> 100 121.8k 100 121.8k 0 0 156.7k 0 0
download-aes-gcm> 100 145.4k 100 145.4k 0 0 213.0k 0 0
download-aho-corasick> 100 179.7k 100 179.7k 0 0 288.5k 0 0
download-amplify_derive> 100 39539 100 39539 0 0 84431 0 0
download-amplify_syn> 100 19566 100 19566 0 0 51567 0 0
download-anstream> 100 28916 100 28916 0 0 67339 0 0
download-anstyle> 100 17787 100 17787 0 0 46656 0 0
download-anstyle-parse> 100 22042 100 22042 0 0 57266 0 0
download-anstyle-query> % Total % Received % Xferd Average Speed Time Time Time Current
download-anstyle-query> Dload Upload Total Spent Left Speed
download-anstyle-query> 100 10264 100 10264 0 0 24689 0 0
download-anstyle-wincon> % Total % Received % Xferd Average Speed Time Time Time Current
download-anstyle-wincon> Dload Upload Total Spent Left Speed
download-anstyle-wincon> 100 12638 100 12638 0 0 33995 0 0
download-anyhow> % Total % Received % Xferd Average Speed Time Time Time Current
download-anyhow> Dload Upload Total Spent Left Speed
download-arraydeque> % Total % Received % Xferd Average Speed Time Time Time Current
download-arraydeque> Dload Upload Total Spent Left Speed
download-arrayvec> structuredAttrs is enabled
download-arrayvec>
download-arrayvec> trying https://static.crates.io/crates/arrayvec/0.7.7/download
download-arrayvec> % Total % Received % Xferd Average Speed Time Time Time Current
download-arrayvec> Dload Upload Total Spent Left Speed
download-as-slice> structuredAttrs is enabled
download-as-slice>
download-as-slice> trying https://static.crates.io/crates/as-slice/0.2.1/download
download-ascii> structuredAttrs is enabled
download-ascii>
download-ascii> trying https://static.crates.io/crates/ascii/1.1.0/download
download-askama> structuredAttrs is enabled
copying path '/nix/store/p2zr4mm1xvv1c6j2v0913nmb69mk3rc4-fontconfig-2.17.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/nlq2d92hx7pa39vpac4micjbk3a1kyjv-gpgme-2.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/6hr2fq70f4v0b3sn666xjswq4l1y8j95-libxmu-1.3.1' from 'https://cache.nixos.org'...
copying path '/nix/store/r850j8cb8b5m4lnfalc24qzd3w2pllxc-lvm2-2.03.39' from 'https://cache.nixos.org'...
copying path '/nix/store/h6qd64h25ydxp1gqlm24n13c43d0a0ca-rustc-bootstrap-wrapper-1.95.0' from 'https://cache.nixos.org'...
copying path '/nix/store/d92cn3k9m5jbbyaysn723bk7vmaxnb47-nodejs-slim-24.16.0-npm' from 'https://cache.nixos.org'...
copying path '/nix/store/2bfsfxxm13zakxcc53m69czx18qshzhm-rustc-1.95.0' from 'https://cache.nixos.org'...
copying path '/nix/store/9dzp8xb7b32w0125grg80cg04dicc4z2-nodejs-slim-24.16.0-corepack' from 'https://cache.nixos.org'...
copying path '/nix/store/c3swnznnarwx8vy6rcxrhz0g4v2450ca-sudo.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/rz3ss5filvbbwi9f36g1dw2f95sasqbq-systemd-minimal-260.2' from 'https://cache.nixos.org'...
copying path '/nix/store/1wp4y214hwiki841d35wm2q5fhj1jq87-security-wrapper-unix_chkpwd-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/xdqnvvzw0443lhs0k8nx3ciia3i7lris-slirp4netns-1.3.4' from 'https://cache.nixos.org'...
copying path '/nix/store/1v1hd7hnss1y3d40dkib5x0dqppkadp8-sudo-1.9.17p2' from 'https://cache.nixos.org'...
copying path '/nix/store/hcgqddzbkw6w3zhk528mmwh3n0jqfas1-shared-mime-info-2.4' from 'https://cache.nixos.org'...
copying path '/nix/store/rd05syhv5v5999907a2n1r37sgi19vpd-systemd-260.2' from 'https://cache.nixos.org'...
copying path '/nix/store/xknwpg5yjxxsffmwdmpys269543wpdy5-stdenv-linux' from 'https://cache.nixos.org'...
building '/nix/store/45pn2anzfcx4iyqxsxzg9mzjs2y2pcb4-docker-layer-radicle-e2e-fixture.drv'...
building '/nix/store/hfzmydl70r9b8j9cg5cbym06vkcwp1an-download-askama_escape-0.10.3.drv'...
building '/nix/store/zmx76zxviiyipld1ds9kr3469achnbky-download-askama_parser-0.2.1.drv'...
building '/nix/store/4vmlyq8j7140536rvx5vnhwpc12ddaxf-download-atom_syndication-0.12.8.drv'...
building '/nix/store/af5yqvbdjg4imm17f53n7rq782fymzr3-download-atomic-0.6.1.drv'...
building '/nix/store/62rjn7sb56wzfly3pblh1p9gwfi09cnb-download-autocfg-1.5.1.drv'...
building '/nix/store/hxlb8v2vmjirnbqj427ghn9kdzwh96bz-download-base-x-0.2.11.drv'...
building '/nix/store/394fsw15fjzdvdcq85b4vd4lb36gh28h-download-base256emoji-1.0.2.drv'...
building '/nix/store/9azq2ymks4zawpysl0r3rh1x8757c271-download-base32-0.4.0.drv'...
building '/nix/store/j2iqcjs4g1n480f5bhfxg03jdpzqnhdz-download-base45-3.2.0.drv'...
building '/nix/store/ndlz9b1vywykvrg3p8q6cgrq27nja718-download-base64ct-1.8.3.drv'...
building '/nix/store/7b0wb3m730ixvkypgnapb3nmy37pza3x-download-basic-toml-0.1.10.drv'...
building '/nix/store/ia6g9xdkcvrp3wm9lf8bwqpg1n7l3a8j-download-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/y2358b2dxwi49v3yzkjncfki5q1y035c-download-bitflags-2.13.0.drv'...
building '/nix/store/52lpzir84c286ij8vfc94magygk3h81y-download-block-padding-0.3.3.drv'...
building '/nix/store/9csr5809zpnhagdi0j1hzmkp0g9k0gnk-download-block2-0.6.2.drv'...
building '/nix/store/d8kbfbn5iq5wwgavzb788vmpimxkdwwc-download-blowfish-0.9.1.drv'...
building '/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv'...
building '/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv'...
building '/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv'...
building '/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv'...
building '/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv'...
building '/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
docker-layer-radicle-e2e-fixture> Adding contents...
docker-layer-radicle-e2e-fixture> Adding /nix/store/n3nxa9yvj8k322xssr45zd9lrcn7hcb4-radicle-e2e-fixture-root
docker-layer-radicle-e2e-fixture> Packing layer...
docker-layer-radicle-e2e-fixture> Finished building layer 'radicle-e2e-fixture'
download-anyhow> 100 48746 100 48746 0 0 94481 0 0
download-arraydeque> 100 17671 100 17671 0 0 40964 0 0
download-arrayvec> 100 33192 100 33192 0 0 81964 0 0
download-as-slice> % Total % Received % Xferd Average Speed Time Time Time Current
download-as-slice> Dload Upload Total Spent Left Speed
download-ascii> % Total % Received % Xferd Average Speed Time Time Time Current
download-ascii> Dload Upload Total Spent Left Speed
download-askama>
download-askama> trying https://static.crates.io/crates/askama/0.12.1/download
download-askama> % Total % Received % Xferd Average Speed Time Time Time Current
download-askama> Dload Upload Total Spent Left Speed
download-askama_derive> structuredAttrs is enabled
download-askama_derive>
download-askama_derive> trying https://static.crates.io/crates/askama_derive/0.12.5/download
download-askama_escape> structuredAttrs is enabled
copying path '/nix/store/8l952gg93y4nb98ma5skc28rcglavpp9-python3.13-ipython-pygments-lexers-1.1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/f2yaf97fj4g2ag6zwwkc8zqnnqkq2h11-python3.13-junit-xml-1.9' from 'https://cache.nixos.org'...
copying path '/nix/store/azypd7fxab3b6wvf9myakq0qcjw18fxh-python3.13-jedi-0.20.0' from 'https://cache.nixos.org'...
building '/nix/store/4vmlyq8j7140536rvx5vnhwpc12ddaxf-download-atom_syndication-0.12.8.drv'...
building '/nix/store/af5yqvbdjg4imm17f53n7rq782fymzr3-download-atomic-0.6.1.drv'...
building '/nix/store/62rjn7sb56wzfly3pblh1p9gwfi09cnb-download-autocfg-1.5.1.drv'...
building '/nix/store/hxlb8v2vmjirnbqj427ghn9kdzwh96bz-download-base-x-0.2.11.drv'...
building '/nix/store/394fsw15fjzdvdcq85b4vd4lb36gh28h-download-base256emoji-1.0.2.drv'...
building '/nix/store/9azq2ymks4zawpysl0r3rh1x8757c271-download-base32-0.4.0.drv'...
building '/nix/store/j2iqcjs4g1n480f5bhfxg03jdpzqnhdz-download-base45-3.2.0.drv'...
building '/nix/store/ndlz9b1vywykvrg3p8q6cgrq27nja718-download-base64ct-1.8.3.drv'...
building '/nix/store/7b0wb3m730ixvkypgnapb3nmy37pza3x-download-basic-toml-0.1.10.drv'...
building '/nix/store/ia6g9xdkcvrp3wm9lf8bwqpg1n7l3a8j-download-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/y2358b2dxwi49v3yzkjncfki5q1y035c-download-bitflags-2.13.0.drv'...
building '/nix/store/52lpzir84c286ij8vfc94magygk3h81y-download-block-padding-0.3.3.drv'...
building '/nix/store/9csr5809zpnhagdi0j1hzmkp0g9k0gnk-download-block2-0.6.2.drv'...
building '/nix/store/d8kbfbn5iq5wwgavzb788vmpimxkdwwc-download-blowfish-0.9.1.drv'...
building '/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv'...
building '/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv'...
building '/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv'...
building '/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv'...
building '/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv'...
building '/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
download-as-slice> 100 6942 100 6942 0 0 17032 0 0
download-ascii> 100 36075 100 36075 0 0 82145 0 0
download-askama> 100 16976 100 16976 0 0 44604 0 0
download-askama_derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-askama_derive> Dload Upload Total Spent Left Speed
download-askama_derive> 100 31218 100 31218 0 0 78559 0 0
download-askama_escape>
download-askama_escape> trying https://static.crates.io/crates/askama_escape/0.10.3/download
download-askama_escape> % Total % Received % Xferd Average Speed Time Time Time Current
download-askama_escape> Dload Upload Total Spent Left Speed
download-askama_escape> 100 8875 100 8875 0 0 23990 0 0
download-askama_parser> structuredAttrs is enabled
download-askama_parser>
download-askama_parser> trying https://static.crates.io/crates/askama_parser/0.2.1/download
download-askama_parser> % Total % Received % Xferd Average Speed Time Time Time Current
download-askama_parser> Dload Upload Total Spent Left Speed
download-askama_parser> 100 20707 100 20707 0 0 53698 0 0
download-atom_syndication> structuredAttrs is enabled
download-atom_syndication>
download-atom_syndication> trying https://static.crates.io/crates/atom_syndication/0.12.8/download
download-atom_syndication> % Total % Received % Xferd Average Speed Time Time Time Current
download-atom_syndication> Dload Upload Total Spent Left Speed
download-atomic> structuredAttrs is enabled
download-atomic>
download-atomic> trying https://static.crates.io/crates/atomic/0.6.1/download
download-atomic> % Total % Received % Xferd Average Speed Time Time Time Current
download-atomic> Dload Upload Total Spent Left Speed
download-autocfg> structuredAttrs is enabled
download-autocfg>
download-autocfg> trying https://static.crates.io/crates/autocfg/1.5.1/download
download-autocfg> % Total % Received % Xferd Average Speed Time Time Time Current
download-autocfg> Dload Upload Total Spent Left Speed
download-base-x> structuredAttrs is enabled
download-base-x>
download-base-x> trying https://static.crates.io/crates/base-x/0.2.11/download
download-base256emoji> structuredAttrs is enabled
download-base256emoji>
download-base256emoji> trying https://static.crates.io/crates/base256emoji/1.0.2/download
download-base32> structuredAttrs is enabled
download-base32>
download-base32> trying https://static.crates.io/crates/base32/0.4.0/download
download-base45> structuredAttrs is enabled
download-base45>
download-base45> trying https://static.crates.io/crates/base45/3.2.0/download
download-base64ct> structuredAttrs is enabled
download-base64ct>
download-base64ct> trying https://static.crates.io/crates/base64ct/1.8.3/download
download-basic-toml> structuredAttrs is enabled
copying path '/nix/store/9lwk3ky6317b2k5babwanl9ka72v744b-cargo-bootstrap-1.95.0' from 'https://cache.nixos.org'...
copying path '/nix/store/9hqfprx1x6gw6zclb42rimddv87gv903-python3.13-markdown-it-py-4.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/516p8j4q7dsqn0f89janx51wzicwivyb-python3.13-matplotlib-inline-0.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/mzpn9q2h4lzvas0hki9vfyfrn3dlm4gj-python3.13-pexpect-4.9.0' from 'https://cache.nixos.org'...
copying path '/nix/store/x6pa4drjnd374xl71x060jsj06fiwkib-python3.13-prompt-toolkit-3.0.52' from 'https://cache.nixos.org'...
copying path '/nix/store/c652h5dsz5cc0qyb9v1j7z222vcx1lh0-python3.13-pure-eval-0.2.3' from 'https://cache.nixos.org'...
copying path '/nix/store/pvvkmvv42s7kiwgymhyl4im853y150ky-python3.13-typing-inspection-0.4.2' from 'https://cache.nixos.org'...
copying path '/nix/store/y5bb4gli12v0pvq1rck01w4zmdavfayz-python3.13-pydantic-core-2.41.5' from 'https://cache.nixos.org'...
copying path '/nix/store/xh1irjfvrz7c3g2z29wvd0fd5j1mr274-python3.13-python-dateutil-2.9.0.post0' from 'https://cache.nixos.org'...
copying path '/nix/store/qa0cja0wgm7408k8z4bj84bx12scnpip-python3.13-ruamel-yaml-0.19.1' from 'https://cache.nixos.org'...
copying path '/nix/store/7d9mb1cxsjpdb6m9hdfg05j1l7pvhkla-tcb-1.2' from 'https://cache.nixos.org'...
copying path '/nix/store/7v24z1mjp37k8lyg0vb45q27k2bl3i63-unit-script-nix-gc-start' from 'https://cache.nixos.org'...
copying path '/nix/store/q99kfjrcg0xfs6yns53a8bs1q5d8jiaj-unit-script-register-nix-paths-start' from 'https://cache.nixos.org'...
copying path '/nix/store/bjzp3s04066hlxys61x4aww4x9lyjzwn-useradd.pam' from 'https://cache.nixos.org'...
building '/nix/store/y2358b2dxwi49v3yzkjncfki5q1y035c-download-bitflags-2.13.0.drv'...
building '/nix/store/52lpzir84c286ij8vfc94magygk3h81y-download-block-padding-0.3.3.drv'...
building '/nix/store/9csr5809zpnhagdi0j1hzmkp0g9k0gnk-download-block2-0.6.2.drv'...
building '/nix/store/d8kbfbn5iq5wwgavzb788vmpimxkdwwc-download-blowfish-0.9.1.drv'...
building '/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv'...
building '/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv'...
building '/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv'...
building '/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv'...
building '/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv'...
building '/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
download-atom_syndication> 100 36492 100 36492 0 0 88934 0 0
download-atomic> 100 15243 100 15243 0 0 38433 0 0
download-autocfg> 100 18911 100 18911 0 0 50057 0 0
download-base-x> % Total % Received % Xferd Average Speed Time Time Time Current
download-base-x> Dload Upload Total Spent Left Speed
download-base-x> 100 10755 100 10755 0 0 29385 0 0
download-base256emoji> % Total % Received % Xferd Average Speed Time Time Time Current
download-base256emoji> Dload Upload Total Spent Left Speed
download-base256emoji> 100 2742 100 2742 0 0 7604 0 0
download-base32> % Total % Received % Xferd Average Speed Time Time Time Current
download-base32> Dload Upload Total Spent Left Speed
download-base32> 100 7791 100 7791 0 0 21173 0 0
download-base45> % Total % Received % Xferd Average Speed Time Time Time Current
download-base45> Dload Upload Total Spent Left Speed
download-base45> 100 12262 100 12262 0 0 33021 0 0
download-base64ct> % Total % Received % Xferd Average Speed Time Time Time Current
download-base64ct> Dload Upload Total Spent Left Speed
download-basic-toml>
download-basic-toml> trying https://static.crates.io/crates/basic-toml/0.1.10/download
download-basic-toml> % Total % Received % Xferd Average Speed Time Time Time Current
download-basic-toml> Dload Upload Total Spent Left Speed
download-bcrypt-pbkdf> structuredAttrs is enabled
download-bcrypt-pbkdf>
download-bcrypt-pbkdf> trying https://static.crates.io/crates/bcrypt-pbkdf/0.10.0/download
download-bcrypt-pbkdf> % Total % Received % Xferd Average Speed Time Time Time Current
download-bcrypt-pbkdf> Dload Upload Total Spent Left Speed
download-bitflags> structuredAttrs is enabled
download-bitflags>
download-bitflags> trying https://static.crates.io/crates/bitflags/2.13.0/download
download-block-padding> structuredAttrs is enabled
download-block-padding>
download-block-padding> trying https://static.crates.io/crates/block-padding/0.3.3/download
download-block2> structuredAttrs is enabled
download-block2>
download-block2> trying https://static.crates.io/crates/block2/0.6.2/download
copying path '/nix/store/104r7fjjlsslwljwpb38cs70d40b1aw9-conmon-2.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/0xvs3a10lj9vibyzfca6ljgqvcq7f94r-etc-ssh-ssh_config' from 'https://cache.nixos.org'...
copying path '/nix/store/b7znxzn9wa1wm20dxz05p8f82xpij1cv-dbus-1.16.2-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/49x6wkrr41xqc4imyd2m8vdm9k8pl73p-dbus-broker-37' from 'https://cache.nixos.org'...
copying path '/nix/store/kz79516g3b3fcn92h67bz1ilhxsyblng-crun-1.27.1' from 'https://cache.nixos.org'...
copying path '/nix/store/l08j0npb3hf5mv08djbw9dx0b0sp38bw-security-wrapper-sudo-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/151865bk1zyhli3lfyp0529cmh76hwn5-hostname' from 'https://cache.nixos.org'...
copying path '/nix/store/lhsrcbb3ncjjgfvxb59d0bs3pkivbi9z-shutdown-ramfs-contents.json' from 'https://cache.nixos.org'...
copying path '/nix/store/zvj0hl7rhh0ccr5vkcg3ijs3xm3sgyac-nodejs-24.16.0' from 'https://cache.nixos.org'...
copying path '/nix/store/gw99wkwd4h114wjlankwq2zz0d3cqv4w-security-wrapper-sudoedit-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/8mlhp8swfbs9sb15amvx1p7mz974a8qa-etc-sysctl.d-60-nixos.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/qjhvf910da4n8n0lbgd4b7whsn8xfjm4-nixos-generate-config' from 'https://cache.nixos.org'...
copying path '/nix/store/0sbi54dacjmi5grcgwyxz5zhc1pd26bp-sudo-1.9.17p2-doc' from 'https://cache.nixos.org'...
building '/nix/store/lxvngybrq77cz5hz06jkz73s7qw2dwi2-download-bstr-1.12.3.drv'...
building '/nix/store/wyhgw88mdm20r2zglx3gxxxlv1v2iz25-download-bumpalo-3.20.3.drv'...
building '/nix/store/ha1njph0jajvfn2h302fxdnnrbp0r6bj-download-bytemuck-1.25.0.drv'...
building '/nix/store/flp1wkwngvihaw7zkfbpl5djr62ljpv0-download-bytesize-2.4.0.drv'...
building '/nix/store/j1snfipviyy3z2nmmgw7b1fqi40wih9q-download-cbc-0.1.2.drv'...
building '/nix/store/zmwwcxqgjsdsszi2y0rv2hr1wv2wdfwm-download-cc-1.2.65.drv'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
download-base64ct> 100 32227 100 32227 0 0 80301 0 0
download-basic-toml> 100 50648 100 50648 0 0 101.6k 0 0
download-bcrypt-pbkdf> 100 11032 100 11032 0 0 29708 0 0
download-bitflags> % Total % Received % Xferd Average Speed Time Time Time Current
download-bitflags> Dload Upload Total Spent Left Speed
download-bitflags> 100 51280 100 51280 0 0 93038 0 0
download-block-padding> % Total % Received % Xferd Average Speed Time Time Time Current
download-block-padding> Dload Upload Total Spent Left Speed
download-block-padding> 100 8504 100 8504 0 0 22818 0 0
download-block2> % Total % Received % Xferd Average Speed Time Time Time Current
download-block2> Dload Upload Total Spent Left Speed
download-block2> 100 34505 100 34505 0 0 75420 0 0
download-blowfish> structuredAttrs is enabled
download-blowfish>
download-blowfish> trying https://static.crates.io/crates/blowfish/0.9.1/download
download-blowfish> % Total % Received % Xferd Average Speed Time Time Time Current
download-blowfish> Dload Upload Total Spent Left Speed
download-blowfish> 100 16734 100 16734 0 0 44394 0 0
download-bstr> structuredAttrs is enabled
download-bstr>
download-bstr> trying https://static.crates.io/crates/bstr/1.12.3/download
download-bumpalo> structuredAttrs is enabled
download-bumpalo>
download-bumpalo> trying https://static.crates.io/crates/bumpalo/3.20.3/download
download-bytemuck> structuredAttrs is enabled
download-bytemuck>
download-bytemuck> trying https://static.crates.io/crates/bytemuck/1.25.0/download
download-bytesize> structuredAttrs is enabled
download-bytesize>
download-bytesize> trying https://static.crates.io/crates/bytesize/2.4.0/download
download-cbc> structuredAttrs is enabled
download-cbc>
download-cbc> trying https://static.crates.io/crates/cbc/0.1.2/download
copying path '/nix/store/g282wy9c5kphvchxa309sgb2ij666wag-python3.13-ptpython-3.0.32' from 'https://cache.nixos.org'...
copying path '/nix/store/nvyigw4hkwjsdrhzxx33nlrn5b0mngxc-python3.13-rich-14.3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/z4bbn331gmmjf3qxhnwfkd7ymbvwhflm-systemd-default-tmpfiles' from 'https://cache.nixos.org'...
copying path '/nix/store/wx2qm337a02jgkyyhvjjm8q035aspvc5-unit-backdoor.service' from 'https://cache.nixos.org'...
copying path '/nix/store/nnczmpwgabhmy1vf6m8aka6940q7ymz4-python3.13-stack-data-0.6.3' from 'https://cache.nixos.org'...
copying path '/nix/store/3xccljcxf71qpz02hfri45g6dk0f0shr-unit-lastlog2-import.service' from 'https://cache.nixos.org'...
copying path '/nix/store/sdn0063a2wa95cgw02xpl6aadyy74gwl-systemd-user.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/6v398s27a1al5v1kfvivwfng27fq8xw2-unit-firewall.service' from 'https://cache.nixos.org'...
copying path '/nix/store/mxvzl22zkz634x5x8yw9ky4yvm1rmxgb-unit-firewall.service' from 'https://cache.nixos.org'...
copying path '/nix/store/7fw1gd917i20ysh9xya4y4hxnamcy58a-unit-dbus.service' from 'https://cache.nixos.org'...
copying path '/nix/store/1rnlk0fgkq8lqds32akkwzm69q6ybl78-systemd' from 'https://cache.nixos.org'...
copying path '/nix/store/wz2436xdzq8ilbzliiqqxxbngw5wwrkb-shadow-4.19.4' from 'https://cache.nixos.org'...
copying path '/nix/store/iv1jr06z57z39kmgnbw4sblch0n99q49-unit-kmod-static-nodes.service' from 'https://cache.nixos.org'...
copying path '/nix/store/asnkwxzwnfkfp98hwfqdf02v6jyg78m6-unit-network-addresses-eth1.service' from 'https://cache.nixos.org'...
copying path '/nix/store/s9p17945lg23b3fm04vkfzr0ml6ygjhw-unit-modprobe-.service' from 'https://cache.nixos.org'...
building '/nix/store/amsxzfsdvhc2j5hiskchnh8a9mrk9g1h-download-cfg-if-1.0.4.drv'...
building '/nix/store/khnzxb8cal9dpl16wfny9i2f3cm9rqbp-download-chacha20-0.9.1.drv'...
building '/nix/store/ds30vjg65ckcrv2vrmaassjhvxpz8q66-download-chrono-0.4.45.drv'...
building '/nix/store/z1js41vzcw89nsqk7qrfdg9szl67ga22-download-cipher-0.4.4.drv'...
building '/nix/store/0nchs2fjw0j5v51w4100jhydc13fvqfm-download-clap-4.6.1.drv'...
building '/nix/store/f5wnisgh9a46zmv5za6vqv6r5a12nqnd-download-clap_builder-4.6.0.drv'...
building '/nix/store/0jwr2ck3d7rc45ibfgrp1hh5qgrwxkn0-download-clap_derive-4.6.1.drv'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
download-bstr> % Total % Received % Xferd Average Speed Time Time Time Current
download-bstr> Dload Upload Total Spent Left Speed
download-bumpalo> % Total % Received % Xferd Average Speed Time Time Time Current
download-bumpalo> Dload Upload Total Spent Left Speed
download-bumpalo> 100 98671 100 98671 0 0 181.7k 0 0
download-bytemuck> % Total % Received % Xferd Average Speed Time Time Time Current
download-bytemuck> Dload Upload Total Spent Left Speed
download-bytemuck> 100 53466 100 53466 0 0 106.7k 0 0
download-bytesize> % Total % Received % Xferd Average Speed Time Time Time Current
download-bytesize> Dload Upload Total Spent Left Speed
download-bytesize> 100 23469 100 23469 0 0 60303 0 0
download-cbc> % Total % Received % Xferd Average Speed Time Time Time Current
download-cbc> Dload Upload Total Spent Left Speed
download-cbc> 100 23501 100 23501 0 0 60626 0 0
download-cc> structuredAttrs is enabled
download-cc>
download-cc> trying https://static.crates.io/crates/cc/1.2.65/download
download-cc> % Total % Received % Xferd Average Speed Time Time Time Current
download-cc> Dload Upload Total Spent Left Speed
download-cfg-if> structuredAttrs is enabled
download-cfg-if>
download-cfg-if> trying https://static.crates.io/crates/cfg-if/1.0.4/download
download-chacha20> structuredAttrs is enabled
download-chacha20>
download-chacha20> trying https://static.crates.io/crates/chacha20/0.9.1/download
download-chrono> structuredAttrs is enabled
download-chrono>
download-chrono> trying https://static.crates.io/crates/chrono/0.4.45/download
download-cipher> structuredAttrs is enabled
download-cipher>
download-cipher> trying https://static.crates.io/crates/cipher/0.4.4/download
download-clap> structuredAttrs is enabled
download-clap>
download-clap> trying https://static.crates.io/crates/clap/4.6.1/download
download-clap_builder> structuredAttrs is enabled
download-clap_builder>
download-clap_builder> trying https://static.crates.io/crates/clap_builder/4.6.0/download
copying path '/nix/store/165rncxlyi4f9pjf1zk3hmj3mh2v881w-dbus-1.16.2' from 'https://cache.nixos.org'...
copying path '/nix/store/a42x1kkjwqq9dly0dyvx85766fns28yi-X-Restart-Triggers-systemd-sysctl' from 'https://cache.nixos.org'...
copying path '/nix/store/zs9s5hdr7ibb9rfx0bv35b38x51vnb4a-python3.13-pydantic-2.12.5' from 'https://cache.nixos.org'...
copying path '/nix/store/mi2rsw259cj5h0fayh8w1phshbpnyym8-python3.13-dbus-python-1.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/kkhz8xbkp161f1472qfc10grlvkbjxng-podman-helper-binary-wrapper' from 'https://cache.nixos.org'...
copying path '/nix/store/yvjj0clffzvqjmis6bqsyx5pcnq6zc7f-perl5.42.0-Net-DBus-1.2.0' from 'https://cache.nixos.org'...
copying path '/nix/store/b7ry4707xckgvszqq5f31cn102wnkk7d-unit-nix-optimise.service' from 'https://cache.nixos.org'...
copying path '/nix/store/g2a3pjaq93a32yji3i5wpwvdf7rzhisd-node-gyp-13.0.0' from 'https://cache.nixos.org'...
copying path '/nix/store/721yndjmxqxva32v9a1lvgmx10ywgppz-unit-nix-gc.service' from 'https://cache.nixos.org'...
copying path '/nix/store/sdbcf79b3fkvhszw9pgs4i4cmc3xsklh-unit-dhcpcd.service' from 'https://cache.nixos.org'...
copying path '/nix/store/24q19kcbv01kcmpc7ng9lh004pwrdxds-unit-network-local-commands.service' from 'https://cache.nixos.org'...
copying path '/nix/store/bcak5zv06jj3wxjx5f6sgwwh4k7nac7q-unit-network-addresses-eth1.service' from 'https://cache.nixos.org'...
copying path '/nix/store/lz45s33qd8zasqhkgm10anax445zb82h-unit-nix-daemon.service' from 'https://cache.nixos.org'...
copying path '/nix/store/gamviprc6sy15nc2v9mm2wkx2hfk42jq-unit-nscd.service' from 'https://cache.nixos.org'...
copying path '/nix/store/lsyld54b8ivff616xnf9mhyxlgczgmgq-unit-generate-shutdown-ramfs.service' from 'https://cache.nixos.org'...
building '/nix/store/spn965b64f09kfpv81q4ydnrkrw7s565-download-clap_lex-1.1.0.drv'...
building '/nix/store/b07ys4lsi09ws1qxkvr0rh7dn4hsm7vb-download-colorchoice-1.0.5.drv'...
building '/nix/store/m0s61ppj79c31v1b5rb56x9zvs3s8img-download-const-str-0.4.3.drv'...
building '/nix/store/9nnymga7jlxkc1xd4r0hqr5nmzf6rqcx-download-crc32fast-1.5.0.drv'...
building '/nix/store/vm5xbjn4acs223i2bqfzx6xwwz5y3hik-download-crossbeam-channel-0.5.15.drv'...
building '/nix/store/rs9dw1v4vzzb3kssc2r7hniklrcn8dn2-download-crossbeam-deque-0.8.6.drv'...
building '/nix/store/17v0wg41vjcd110qnjfznqwifjcw9hsn-download-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
download-bstr> 100 346.8k 100 346.8k 0 0 476.6k 0 0
download-cc> 100 95435 100 95435 0 0 177.4k 0 0
download-cfg-if> % Total % Received % Xferd Average Speed Time Time Time Current
download-cfg-if> Dload Upload Total Spent Left Speed
download-cfg-if> 100 9360 100 9360 0 0 22619 0 0
download-chacha20> % Total % Received % Xferd Average Speed Time Time Time Current
download-chacha20> Dload Upload Total Spent Left Speed
download-chacha20> 100 23424 100 23424 0 0 60165 0 0
download-chrono> % Total % Received % Xferd Average Speed Time Time Time Current
download-chrono> Dload Upload Total Spent Left Speed
download-chrono> 100 235.2k 100 235.2k 0 0 360.2k 0 0
download-cipher> % Total % Received % Xferd Average Speed Time Time Time Current
download-cipher> Dload Upload Total Spent Left Speed
download-cipher> 100 19073 100 19073 0 0 49969 0 0
download-clap> % Total % Received % Xferd Average Speed Time Time Time Current
download-clap> Dload Upload Total Spent Left Speed
download-clap> 100 61836 100 61836 0 0 113.2k 0 0
download-clap_builder> % Total % Received % Xferd Average Speed Time Time Time Current
download-clap_builder> Dload Upload Total Spent Left Speed
download-clap_derive> structuredAttrs is enabled
download-clap_derive>
download-clap_derive> trying https://static.crates.io/crates/clap_derive/4.6.1/download
download-clap_derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-clap_derive> Dload Upload Total Spent Left Speed
download-clap_derive> 100 33512 100 33512 0 0 81882 0 0
download-clap_lex> structuredAttrs is enabled
download-clap_lex>
download-clap_lex> trying https://static.crates.io/crates/clap_lex/1.1.0/download
download-colorchoice> structuredAttrs is enabled
download-colorchoice>
download-colorchoice> trying https://static.crates.io/crates/colorchoice/1.0.5/download
download-const-str> structuredAttrs is enabled
download-const-str>
download-const-str> trying https://static.crates.io/crates/const-str/0.4.3/download
download-crc32fast> structuredAttrs is enabled
download-crc32fast>
download-crc32fast> trying https://static.crates.io/crates/crc32fast/1.5.0/download
download-crossbeam-channel> structuredAttrs is enabled
download-crossbeam-channel>
download-crossbeam-channel> trying https://static.crates.io/crates/crossbeam-channel/0.5.15/download
download-crossbeam-deque> structuredAttrs is enabled
copying path '/nix/store/1rq23rv9dwv06qxaqkyh094w329lz9fc-50-coredump.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/g91dg98j57raih2plr9zz6345yrz035v-python3.13-ipython-9.9.0' from 'https://cache.nixos.org'...
copying path '/nix/store/0vy45hj90fci9n006kw70mh5b1pyxa3g-security-wrapper-newgidmap-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/rdsn7gcxxnbvvms5ljcr8mqqj5g56lis-security-wrapper-chsh-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/7szlv37z4k1dz4b57h6hjkpv3rgxzbv1-python3.13-rich-argparse-1.7.2' from 'https://cache.nixos.org'...
copying path '/nix/store/vnf9dl0k0lrjih9qd4ap711h14ky8lwi-security-wrapper-newgrp-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/yfdw919xv3fvrhvyyi356yazb0lk486y-security-wrapper-sg-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/0nx743iqhik8xz930m5fmvcxyb9kh830-security-wrapper-passwd-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/5zms4gxns8dfbb0r9vhbs02wx3ddr5yz-security-wrapper-newuidmap-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/qnlnb5y2rqri7wff18dkisyndim6ldzv-unit-podman.service' from 'https://cache.nixos.org'...
copying path '/nix/store/inv9yggx2yqgqi8lydpdqckjzwbsr4rv-unit-post-boot.service' from 'https://cache.nixos.org'...
copying path '/nix/store/4gpa4y1s0s1vz6yrqysadvpifxwbqyg6-shadow-4.19.4-su' from 'https://cache.nixos.org'...
copying path '/nix/store/ykh6mn37zb6xkab174rrcl29kkcbil3v-unit-prepare-kexec.service' from 'https://cache.nixos.org'...
copying path '/nix/store/gqhvqkdj31p4dfbwmsavszas62ri11zd-unit-register-nix-paths.service' from 'https://cache.nixos.org'...
copying path '/nix/store/jmzlqhxzrrfv0aqzv00aaiq80y8mxw40-unit-qemu-guest-agent.service' from 'https://cache.nixos.org'...
building '/nix/store/2m7jqkd5fm2grb7k5v2lb9niych7ziwp-download-crossbeam-utils-0.8.21.drv'...
building '/nix/store/ap5nlyq25qg9dbddz3vp321kbz6wnhn8-download-crypto-common-0.1.7.drv'...
building '/nix/store/h33dhg979rhr6wqw27qrcx8w8rnyryxh-download-ct-codecs-1.1.7.drv'...
building '/nix/store/ymbziy04m0b67rr8bahafdmrg42fhfnm-download-ctr-0.9.2.drv'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
download-clap_builder> 100 167.1k 100 167.1k 0 0 269.6k 0 0
download-clap_lex> % Total % Received % Xferd Average Speed Time Time Time Current
download-clap_lex> Dload Upload Total Spent Left Speed
download-clap_lex> 100 13470 100 13470 0 0 36003 0 0
download-colorchoice> % Total % Received % Xferd Average Speed Time Time Time Current
download-colorchoice> Dload Upload Total Spent Left Speed
download-colorchoice> 100 8187 100 8187 0 0 22348 0 0
download-const-str> % Total % Received % Xferd Average Speed Time Time Time Current
download-const-str> Dload Upload Total Spent Left Speed
download-const-str> 100 25896 100 25896 0 0 65170 0 0
download-crc32fast> % Total % Received % Xferd Average Speed Time Time Time Current
download-crc32fast> Dload Upload Total Spent Left Speed
download-crossbeam-channel> % Total % Received % Xferd Average Speed Time Time Time Current
download-crossbeam-channel> Dload Upload Total Spent Left Speed
download-crossbeam-deque>
download-crossbeam-deque> trying https://static.crates.io/crates/crossbeam-deque/0.8.6/download
download-crossbeam-deque> % Total % Received % Xferd Average Speed Time Time Time Current
download-crossbeam-deque> Dload Upload Total Spent Left Speed
download-crossbeam-epoch> structuredAttrs is enabled
download-crossbeam-epoch>
download-crossbeam-epoch> trying https://static.crates.io/crates/crossbeam-epoch/0.9.18/download
download-crossbeam-epoch> % Total % Received % Xferd Average Speed Time Time Time Current
download-crossbeam-epoch> Dload Upload Total Spent Left Speed
download-crossbeam-utils> structuredAttrs is enabled
download-crossbeam-utils>
download-crossbeam-utils> trying https://static.crates.io/crates/crossbeam-utils/0.8.21/download
download-crypto-common> structuredAttrs is enabled
download-crypto-common>
download-crypto-common> trying https://static.crates.io/crates/crypto-common/0.1.7/download
download-ct-codecs> structuredAttrs is enabled
copying path '/nix/store/y6bd9q4vcv79hwa915zn57db737hna2d-python3-3.13.13-env' from 'https://cache.nixos.org'...
copying path '/nix/store/irgz87ixj6hwa7xpmjd88pfqlxzwgy6i-unit-reload-systemd-vconsole-setup.service' from 'https://cache.nixos.org'...
copying path '/nix/store/x34rk37kjqfcg4pkljqnm2z3x360vm7d-unit-resolvconf.service' from 'https://cache.nixos.org'...
copying path '/nix/store/njqx4j4zvsg9zkh1p7bik5hda2n4sxw1-unit-sleep-actions.service' from 'https://cache.nixos.org'...
copying path '/nix/store/nllp43fickjfbvpimxldmalyn1q7w6qg-unit-systemd-backlight-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/mw1i755nkrasii8qkz3zn1v1k18h00zw-unit-script-linger-users-start' from 'https://cache.nixos.org'...
copying path '/nix/store/n5jr5202za9byvsw82crb0kchd8k4mw1-unit-systemd-journald.service' from 'https://cache.nixos.org'...
copying path '/nix/store/1i22ja9szfc3p48dnbgxwwihkn6hx7rr-unit-systemd-localed.service' from 'https://cache.nixos.org'...
copying path '/nix/store/4y13djg1sm7qzipnhdsqczb18v92r79k-unit-systemd-modules-load.service' from 'https://cache.nixos.org'...
copying path '/nix/store/vw1qbvdlql0gnw0d259k4pbqyv8gdgi8-unit-systemd-nspawn-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/avclk6x7dckj809d5gpbl40qcsvjv31q-unit-systemd-hostnamed.service' from 'https://cache.nixos.org'...
copying path '/nix/store/4qsv8i6sdppdrjzzwm6hy8rw28vlkzzw-unit-systemd-journal-flush.service' from 'https://cache.nixos.org'...
copying path '/nix/store/f35mzxsdn8zhqahdl4y65325cvl2xyik-unit-systemd-importd.service' from 'https://cache.nixos.org'...
copying path '/nix/store/22j9nah99c4waqa20bswypa0121mmrfp-unit-systemd-logind.service' from 'https://cache.nixos.org'...
copying path '/nix/store/wc9kmqqjxdnjc88sibr8hnarxza5kl06-unit-systemd-journald-.service' from 'https://cache.nixos.org'...
building '/nix/store/pzj8776wqnj6ij8pijlxkinlafwxfr0g-download-ctrlc-3.5.2.drv'...
building '/nix/store/5nqxc1xb20z4hc9zsk0d888z0s90x6d4-download-culpa-1.0.2.drv'...
building '/nix/store/84n2dcdrqc716ij0w4d4f467bji2s0kj-download-culpa-macros-1.0.2.drv'...
building '/nix/store/hpg181s67nwzmv80csq54srl0wf7a7p5-download-cvt-0.1.2.drv'...
building '/nix/store/6hpygp619gcnm7jy8vgnsw9sc5wbia35-download-cypheraddr-0.4.1.drv'...
building '/nix/store/lc4zzq53kgmd044vf1swm6yp7khhxd5g-download-cyphergraphy-0.3.0.drv'...
building '/nix/store/5153a8la57983ddwszf4mdzxyznvbpn9-download-cyphernet-0.5.3.drv'...
building '/nix/store/a8bykfxigllfwkld0igi3fgi260fb5kv-download-darling-0.20.11.drv'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
download-crc32fast> 100 40723 100 40723 0 0 86541 0 0
download-crossbeam-channel> 100 92716 100 92716 0 0 172.9k 0 0
download-crossbeam-deque> 100 22471 100 22471 0 0 54510 0 0
download-crossbeam-epoch> 100 46875 100 46875 0 0 96465 0 0
download-crossbeam-utils> % Total % Received % Xferd Average Speed Time Time Time Current
download-crossbeam-utils> Dload Upload Total Spent Left Speed
download-crossbeam-utils> 100 42691 100 42691 0 0 84033 0 0
download-crypto-common> % Total % Received % Xferd Average Speed Time Time Time Current
download-crypto-common> Dload Upload Total Spent Left Speed
download-crypto-common> 100 9619 100 9619 0 0 26230 0 0
download-ct-codecs>
download-ct-codecs> trying https://static.crates.io/crates/ct-codecs/1.1.7/download
download-ct-codecs> % Total % Received % Xferd Average Speed Time Time Time Current
download-ct-codecs> Dload Upload Total Spent Left Speed
download-ct-codecs> 100 11450 100 11450 0 0 30652 0 0
download-ctr> structuredAttrs is enabled
download-ctr>
download-ctr> trying https://static.crates.io/crates/ctr/0.9.2/download
download-ctr> % Total % Received % Xferd Average Speed Time Time Time Current
download-ctr> Dload Upload Total Spent Left Speed
download-ctr> 100 18344 100 18344 0 0 42621 0 0
download-ctrlc> structuredAttrs is enabled
download-ctrlc>
download-ctrlc> trying https://static.crates.io/crates/ctrlc/3.5.2/download
download-ctrlc> % Total % Received % Xferd Average Speed Time Time Time Current
download-ctrlc> Dload Upload Total Spent Left Speed
download-culpa> structuredAttrs is enabled
download-culpa>
download-culpa> trying https://static.crates.io/crates/culpa/1.0.2/download
download-culpa-macros> structuredAttrs is enabled
download-culpa-macros>
download-culpa-macros> trying https://static.crates.io/crates/culpa-macros/1.0.2/download
download-cvt> structuredAttrs is enabled
download-cvt>
download-cvt> trying https://static.crates.io/crates/cvt/0.1.2/download
download-cypheraddr> structuredAttrs is enabled
download-cypheraddr>
download-cypheraddr> trying https://static.crates.io/crates/cypheraddr/0.4.1/download
download-cyphergraphy> structuredAttrs is enabled
download-cyphergraphy>
download-cyphergraphy> trying https://static.crates.io/crates/cyphergraphy/0.3.0/download
download-cyphernet> structuredAttrs is enabled
download-cyphernet>
download-cyphernet> trying https://static.crates.io/crates/cyphernet/0.5.3/download
copying path '/nix/store/rmkgq6sa2lg8a1in2wkrrm7bpr9xb1h3-remarshal-0.17.1' from 'https://cache.nixos.org'...
copying path '/nix/store/530drdjsky0x9jw30rygjx53vl1vgj76-security-wrapper-su-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/wnh3v1xplga40sfw1x4g3jvwkzbrhla5-unit-systemd-oomd.service' from 'https://cache.nixos.org'...
copying path '/nix/store/pxslxn3rmz0xmbvlnsyp0z7rd2108h0y-unit-systemd-sysctl.service' from 'https://cache.nixos.org'...
copying path '/nix/store/zw28mink4kbibfp12z68vxa3jss3zgqy-unit-systemd-timedated.service' from 'https://cache.nixos.org'...
copying path '/nix/store/zdfynwzl3msa6h1ca1imv2al23zlmf5g-unit-systemd-pstore.service' from 'https://cache.nixos.org'...
copying path '/nix/store/ld180ycjhxw5dx1nz4ac7304mkkl9jmr-unit-systemd-user-sessions.service' from 'https://cache.nixos.org'...
copying path '/nix/store/38brv4nfqqr4gq01hazpbsmws9snk6wj-unit-user-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/wnc2r85qlklapq032cybg3l2xdrp06wm-userdel.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/c4pv3p982vp80llja43vzvs0xdjgcf2l-unit-systemd-update-utmp.service' from 'https://cache.nixos.org'...
copying path '/nix/store/yrvnq5hghgzsi7z1wyq3dy5ic5cnjngv-unit-systemd-random-seed.service' from 'https://cache.nixos.org'...
copying path '/nix/store/fxvsi32yfcvsls6cjb6hg09ipaxqf2jf-unit-user-runtime-dir-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/s1bjcna8pn09jv2y05iiknkk7423h97p-unit-systemd-tmpfiles-setup.service' from 'https://cache.nixos.org'...
copying path '/nix/store/fkvv7gncyrlxdxxzb7l925vakrc4fl88-unit-systemd-remount-fs.service' from 'https://cache.nixos.org'...
copying path '/nix/store/0yzz5gy7ynj4wpm81vqgidfngqk1iq0k-usermod.pam' from 'https://cache.nixos.org'...
building '/nix/store/rzj1gqnw63sjkpswv866pb35zfnbrq2h-download-darling_core-0.20.11.drv'...
building '/nix/store/vh979ll8h2gi6c2jw7pq7z5rxkkjcbfj-download-darling_macro-0.20.11.drv'...
building '/nix/store/m366l2509klahn7x5sbfi4j1cn5ldzm5-download-data-encoding-2.11.0.drv'...
building '/nix/store/m0980kkm6fkbp46jbacngl9zwc05g0d7-download-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
download-ctrlc> 100 14194 100 14194 0 0 35078 0 0
download-culpa> % Total % Received % Xferd Average Speed Time Time Time Current
download-culpa> Dload Upload Total Spent Left Speed
download-culpa> 100 10733 100 10733 0 0 29265 0 0
download-culpa-macros> % Total % Received % Xferd Average Speed Time Time Time Current
download-culpa-macros> Dload Upload Total Spent Left Speed
download-culpa-macros> 100 3325 100 3325 0 0 8635 0 0
download-cvt> % Total % Received % Xferd Average Speed Time Time Time Current
download-cvt> Dload Upload Total Spent Left Speed
download-cvt> 100 6214 100 6214 0 0 16821 0 0
download-cypheraddr> % Total % Received % Xferd Average Speed Time Time Time Current
download-cypheraddr> Dload Upload Total Spent Left Speed
download-cypheraddr> 100 14030 100 14030 0 0 34529 0 0
download-cyphergraphy> % Total % Received % Xferd Average Speed Time Time Time Current
download-cyphergraphy> Dload Upload Total Spent Left Speed
download-cyphergraphy> 100 7828 100 7828 0 0 21142 0 0
download-cyphernet> % Total % Received % Xferd Average Speed Time Time Time Current
download-cyphernet> Dload Upload Total Spent Left Speed
download-darling> structuredAttrs is enabled
download-darling>
download-darling> trying https://static.crates.io/crates/darling/0.20.11/download
download-darling> % Total % Received % Xferd Average Speed Time Time Time Current
download-darling> Dload Upload Total Spent Left Speed
download-darling_core> structuredAttrs is enabled
download-darling_core>
download-darling_core> trying https://static.crates.io/crates/darling_core/0.20.11/download
download-darling_macro> structuredAttrs is enabled
download-darling_macro>
download-darling_macro> trying https://static.crates.io/crates/darling_macro/0.20.11/download
download-data-encoding> structuredAttrs is enabled
copying path '/nix/store/fq1qmdi2751f49k5dzcp74y1x7xp2xhx-unit-linger-users.service' from 'https://cache.nixos.org'...
copying path '/nix/store/bb8bj6354lfp5m0141dh6brmf1v1cxcg-util-linux-2.42-swap' from 'https://cache.nixos.org'...
copying path '/nix/store/xljjnnfq7fc5dcfvq6ypvqwnv12d2jx0-xauth-1.1.5' from 'https://cache.nixos.org'...
copying path '/nix/store/r36mwd5l0szp5mwmlyfkabdbmd84ad6s-util-linux-2.42-lastlog' from 'https://cache.nixos.org'...
copying path '/nix/store/qq3x890gwa050lidi6zyxklrr3rbpxdl-util-linux-2.42-mount' from 'https://cache.nixos.org'...
copying path '/nix/store/apkal2g0cs3lkaq6br4gc1k67n4q3mgb-util-linux-minimal-2.42-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/4w6srbi141k99pyrp2bfmz98q1f4fkvz-xfsprogs-7.0.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/g5dzkbnm7n8b61fbdv1x32b24lyhshq2-vlock.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/18ygd63lrpv4a4blpkxvm9xpvbbilkdd-xdg-utils-1.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/l9ra4yk5khapd0cwi1q6djx7j9zzi232-util-linux-2.42-login' from 'https://cache.nixos.org'...
building '/nix/store/ngfnw5ch35w86sp942ia57vva1d0p0s1-download-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/7119yj16m370zw076rf9hg1ma952b0i9-download-defer-heavy-0.1.0.drv'...
building '/nix/store/kzvmm51rq7zsy6qaa8ksj5jf12n1lnw4-download-der-0.7.10.drv'...
building '/nix/store/l1v0y0p06fmgw6f38a0mzdqxpbzb8zga-download-deranged-0.5.8.drv'...
building '/nix/store/b700iyvbmkgkly2s3vszix850bb67j1p-download-derive_builder-0.20.2.drv'...
building '/nix/store/73gj6w2m3ghc6vwrgnp33lxd0gy0jrb7-download-derive_builder_core-0.20.2.drv'...
building '/nix/store/94gc9gkg08p64cykcpv2j8v4r0j77cqh-download-derive_builder_macro-0.20.2.drv'...
building '/nix/store/67cbbh8d3i76ki5pgkzy8q3knfnjmv64-download-descape-3.0.0.drv'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
download-cyphernet> 100 129.8k 100 129.8k 0 0 216.7k 0 0
download-darling> 100 37614 100 37614 0 0 88651 0 0
download-darling_core> % Total % Received % Xferd Average Speed Time Time Time Current
download-darling_core> Dload Upload Total Spent Left Speed
download-darling_core> 100 68006 100 68006 0 0 128.0k 0 0
download-darling_macro> % Total % Received % Xferd Average Speed Time Time Time Current
download-darling_macro> Dload Upload Total Spent Left Speed
download-darling_macro> 100 2532 100 2532 0 0 6186 0 0
download-data-encoding>
download-data-encoding> trying https://static.crates.io/crates/data-encoding/2.11.0/download
download-data-encoding> % Total % Received % Xferd Average Speed Time Time Time Current
download-data-encoding> Dload Upload Total Spent Left Speed
download-data-encoding> 100 22677 100 22677 0 0 59184 0 0
download-data-encoding-macro> structuredAttrs is enabled
download-data-encoding-macro>
download-data-encoding-macro> trying https://static.crates.io/crates/data-encoding-macro/0.1.20/download
download-data-encoding-macro> % Total % Received % Xferd Average Speed Time Time Time Current
download-data-encoding-macro> Dload Upload Total Spent Left Speed
download-data-encoding-macro> 100 4377 100 4377 0 0 12190 0 0
download-data-encoding-macro-internal> structuredAttrs is enabled
download-data-encoding-macro-internal>
download-data-encoding-macro-internal> trying https://static.crates.io/crates/data-encoding-macro-internal/0.1.18/download
download-data-encoding-macro-internal> % Total % Received % Xferd Average Speed Time Time Time Current
download-data-encoding-macro-internal> Dload Upload Total Spent Left Speed
download-defer-heavy> structuredAttrs is enabled
download-defer-heavy>
download-defer-heavy> trying https://static.crates.io/crates/defer-heavy/0.1.0/download
download-der> structuredAttrs is enabled
download-der>
download-der> trying https://static.crates.io/crates/der/0.7.10/download
download-deranged> structuredAttrs is enabled
download-deranged>
download-deranged> trying https://static.crates.io/crates/deranged/0.5.8/download
download-derive_builder> structuredAttrs is enabled
download-derive_builder>
download-derive_builder> trying https://static.crates.io/crates/derive_builder/0.20.2/download
download-derive_builder_core> structuredAttrs is enabled
download-derive_builder_core>
download-derive_builder_core> trying https://static.crates.io/crates/derive_builder_core/0.20.2/download
download-derive_builder_macro> structuredAttrs is enabled
copying path '/nix/store/ls3v0i4sf473ydchpzmddq6sv17cch7l-etc-systemd-system.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/kbfmv8c26k95bqwwicl50m972rbm0496-fuse-3.17.4' from 'https://cache.nixos.org'...
copying path '/nix/store/3gqdgvxkwbqyhrb34nxndh37aqsancxj-su.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/87j3qncak23klay0kkg7djlmf9p7pivh-nixos-enter' from 'https://cache.nixos.org'...
copying path '/nix/store/rp6slcysgzpq6kwvr3m44nzcm1v59lps-lvm2-2.03.39-scripts' from 'https://cache.nixos.org'...
copying path '/nix/store/0gq57nccw15drfrgx9axjs03wl164z9h-tmpfiles.d' from 'https://cache.nixos.org'...
copying path '/nix/store/qcpwgd3b95bxxylvb0na4hny75chrkzm-rustc-wrapper-1.95.0' from 'https://cache.nixos.org'...
copying path '/nix/store/17mdxjzbwxyndx8n4911xkjxb08qd97r-man-db-2.13.1' from 'https://cache.nixos.org'...
copying path '/nix/store/m147xymm1adbj0ii9agk4gbidsfm12f8-login.pam' from 'https://cache.nixos.org'...
copying path '/nix/store/qjs15klpvpwz64pjdspy3mln6d54pd8f-util-linux-2.42-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/7nvvcdsr5xkn9rmp2cg1cyk2sd6h16jl-systemd-generator-environment.json' from 'https://cache.nixos.org'...
building '/nix/store/lknvq5jd1n9pckq2l2qpir6zbq97yagk-download-deunicode-1.6.2.drv'...
building '/nix/store/jkg01waaiwrr4xkzhkghsd4d57gr3f1w-download-diligent-date-parser-0.1.5.drv'...
building '/nix/store/75h61gnpkrxr73wh1y3pxfzjpfd99lrj-download-dispatch2-0.3.1.drv'...
building '/nix/store/dczh03dfvf14p5bj71q1jzfj9cii59mh-download-displaydoc-0.2.6.drv'...
building '/nix/store/q7dr9mkcwg5z3lph1m2dhs37aqh2y1iz-download-doc-comment-0.3.4.drv'...
building '/nix/store/a0hqlncxiyh6ppcavajqqml9024a83s6-download-dunce-1.0.5.drv'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
download-data-encoding-macro-internal> 100 3729 100 3729 0 0 9750 0 0
download-defer-heavy> % Total % Received % Xferd Average Speed Time Time Time Current
download-defer-heavy> Dload Upload Total Spent Left Speed
download-defer-heavy> 100 5773 100 5773 0 0 16095 0 0
download-der> % Total % Received % Xferd Average Speed Time Time Time Current
download-der> Dload Upload Total Spent Left Speed
download-der> 100 90111 100 90111 0 0 169.2k 0 0
download-deranged> % Total % Received % Xferd Average Speed Time Time Time Current
download-deranged> Dload Upload Total Spent Left Speed
download-deranged> 100 26885 100 26885 0 0 69756 0 0
download-derive_builder> % Total % Received % Xferd Average Speed Time Time Time Current
download-derive_builder> Dload Upload Total Spent Left Speed
download-derive_builder> 100 36661 100 36661 0 0 90509 0 0
download-derive_builder_core> % Total % Received % Xferd Average Speed Time Time Time Current
download-derive_builder_core> Dload Upload Total Spent Left Speed
download-derive_builder_core> 100 31397 100 31397 0 0 78849 0 0
download-derive_builder_macro>
download-derive_builder_macro> trying https://static.crates.io/crates/derive_builder_macro/0.20.2/download
download-derive_builder_macro> % Total % Received % Xferd Average Speed Time Time Time Current
download-derive_builder_macro> Dload Upload Total Spent Left Speed
download-derive_builder_macro> 100 6360 100 6360 0 0 16370 0 0
download-descape> structuredAttrs is enabled
download-descape>
download-descape> trying https://static.crates.io/crates/descape/3.0.0/download
download-descape> % Total % Received % Xferd Average Speed Time Time Time Current
download-descape> Dload Upload Total Spent Left Speed
download-descape> 100 12799 100 12799 0 0 34433 0 0
download-deunicode> structuredAttrs is enabled
download-deunicode>
download-deunicode> trying https://static.crates.io/crates/deunicode/1.6.2/download
download-diligent-date-parser> structuredAttrs is enabled
download-diligent-date-parser>
download-diligent-date-parser> trying https://static.crates.io/crates/diligent-date-parser/0.1.5/download
download-dispatch2> structuredAttrs is enabled
download-dispatch2>
download-dispatch2> trying https://static.crates.io/crates/dispatch2/0.3.1/download
download-displaydoc> structuredAttrs is enabled
download-displaydoc>
download-displaydoc> trying https://static.crates.io/crates/displaydoc/0.2.6/download
download-doc-comment> structuredAttrs is enabled
copying path '/nix/store/y3ihhwj84yf5589f43cbhvmy14icl6fh-X-Restart-Triggers-systemd-tmpfiles-resetup' from 'https://cache.nixos.org'...
copying path '/nix/store/anqlj1jbfwwc4k73540164wm9ph7dysj-cibtool-system' from 'https://cache.nixos.org'...
copying path '/nix/store/gann902zf0bliq81v07j9m9mqfpwg62w-fuse-overlayfs-1.17' from 'https://cache.nixos.org'...
copying path '/nix/store/6gcrqjdzbx71bavmmrqpl3hw1ljml7vi-cargo-1.95.0' from 'https://cache.nixos.org'...
copying path '/nix/store/c5yg5f08qarylj0xml1kwj2awspyh7xi-install-grub.pl' from 'https://cache.nixos.org'...
copying path '/nix/store/irjqr1bj5k2fa5kvwv9fqwq3c4lbz2k5-qemu-host-cpu-only-for-vm-tests-11.0.1' from 'https://cache.nixos.org'...
copying path '/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1' from 'https://cache.nixos.org'...
copying path '/nix/store/azhv4jkrfv94m2r5a8raklqjm5gzyx80-getty' from 'https://cache.nixos.org'...
copying path '/nix/store/yzk102adj4f5qxhnwa1g9qwlizhqqfpf-mdadm-4.6' from 'https://cache.nixos.org'...
copying path '/nix/store/jgsa8qcsgnf74f2ckd60aw001id1k26b-grub-2.12' from 'https://cache.nixos.org'...
copying path '/nix/store/ky4axiq7plkwqy360p7fi3z63yyn933v-etc-lvm-lvm.conf' from 'https://cache.nixos.org'...
copying path '/nix/store/mi5px4g8w6b0xqv9xrzqbr69rx57j3rx-nixos-install' from 'https://cache.nixos.org'...
copying path '/nix/store/ys8dm6v622p89nypdhxk5jfnklyy7qy5-nixos-option' from 'https://cache.nixos.org'...
copying path '/nix/store/xw6xhhcb5imkcrl188pjz99q3i5p359b-dry-activate' from 'https://cache.nixos.org'...
copying path '/nix/store/shflygg30gv5zb5jqa9ilx1m4arsl954-security-wrapper-umount-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
copying path '/nix/store/hgkyib7w598plyf70lqfh1i3vh40in10-security-wrapper-mount-x86_64-unknown-linux-musl' from 'https://cache.nixos.org'...
building '/nix/store/lg7dzbk80pwar7fjry496pivjihzwm7n-download-duration-str-0.21.0.drv'...
building '/nix/store/kl5a00rpibk3cdsamp0cvyhrk86p3syz-download-dyn-clone-1.0.20.drv'...
building '/nix/store/ifxdf7d6fm7ynizkrmimxxnlmz58agzf-download-ec25519-0.1.0.drv'...
building '/nix/store/z84c48xl30vg8r6hzd3d5zpgvs7z3jg7-download-ed25519-1.5.3.drv'...
building '/nix/store/9n18pvrcjsa2h64vy7kyl3l8qkr57qmk-download-erased-serde-0.4.10.drv'...
building '/nix/store/amd3s3si9a3pm3w3pp71kc16y3phgibz-download-errno-0.3.14.drv'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
download-deunicode> % Total % Received % Xferd Average Speed Time Time Time Current
download-deunicode> Dload Upload Total Spent Left Speed
download-deunicode> 100 168.7k 100 168.7k 0 0 271.4k 0 0
download-diligent-date-parser> % Total % Received % Xferd Average Speed Time Time Time Current
download-diligent-date-parser> Dload Upload Total Spent Left Speed
download-diligent-date-parser> 100 8017 100 8017 0 0 20145 0 0
download-dispatch2> % Total % Received % Xferd Average Speed Time Time Time Current
download-dispatch2> Dload Upload Total Spent Left Speed
download-dispatch2> 100 55299 100 55299 0 0 110.0k 0 0
download-displaydoc> % Total % Received % Xferd Average Speed Time Time Time Current
download-displaydoc> Dload Upload Total Spent Left Speed
download-displaydoc> 100 21191 100 21191 0 0 51916 0 0
download-doc-comment>
download-doc-comment> trying https://static.crates.io/crates/doc-comment/0.3.4/download
download-doc-comment> % Total % Received % Xferd Average Speed Time Time Time Current
download-doc-comment> Dload Upload Total Spent Left Speed
download-doc-comment> 100 4341 100 4341 0 0 11360 0 0
download-dunce> structuredAttrs is enabled
download-dunce>
download-dunce> trying https://static.crates.io/crates/dunce/1.0.5/download
download-dunce> % Total % Received % Xferd Average Speed Time Time Time Current
download-dunce> Dload Upload Total Spent Left Speed
download-dunce> 100 8244 100 8244 0 0 22563 0 0
download-duration-str> structuredAttrs is enabled
download-duration-str>
download-duration-str> trying https://static.crates.io/crates/duration-str/0.21.0/download
download-dyn-clone> structuredAttrs is enabled
download-dyn-clone>
download-dyn-clone> trying https://static.crates.io/crates/dyn-clone/1.0.20/download
download-ec25519> structuredAttrs is enabled
download-ec25519>
download-ec25519> trying https://static.crates.io/crates/ec25519/0.1.0/download
download-ed25519> structuredAttrs is enabled
download-ed25519>
download-ed25519> trying https://static.crates.io/crates/ed25519/1.5.3/download
download-erased-serde> structuredAttrs is enabled
download-erased-serde>
download-erased-serde> trying https://static.crates.io/crates/erased-serde/0.4.10/download
copying path '/nix/store/wg5127w34vks5jixjk5a99636krxmb8p-stage-2-init.sh' from 'https://cache.nixos.org'...
copying path '/nix/store/s7ygy8mzvr78zy38ra27gyb28300fwzq-unit-container-getty-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/xhsvjhdvpwibx6zd3lc398qnrxq7j0cr-unit-script-nixos-activation-start' from 'https://cache.nixos.org'...
copying path '/nix/store/cmcij69qjm8afvnnnr2rwjaqavbm4k6r-unit-serial-getty-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/mwwy6p61xz7rpaalflm71sf21491bcj0-udev-path' from 'https://cache.nixos.org'...
copying path '/nix/store/233flrcl5m97hd6vdnm3wwxdqlraix8i-unit-systemd-fsck-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/a6qh6p60fbks27fnx2w817j4sq1fybbz-unit-systemd-makefs-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/jxir0k6jglqwyiw769rhh1m2y4cmpdas-unit-systemd-mkswap-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/krdknpfx2cz2jxg1xp223zyy8h2l7laq-util-linux-2.42-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/qg93fjzs4cxds7s5rnqgr5n3bd7gkwp4-getty' from 'https://cache.nixos.org'...
copying path '/nix/store/0k4s0ss8x6lm13vp3c2m26p7vkg3vkc3-podman-5.8.4' from 'https://cache.nixos.org'...
copying path '/nix/store/x2fbx900bd4gls1szz5xa2ndb1ayznm2-moby-29.6.0' from 'https://cache.nixos.org'...
building '/nix/store/hmr5f6vas0fakskl0sfpfdg4sarkn0ca-download-fast-glob-0.3.3.drv'...
building '/nix/store/6zq7f249ipsivqfck0nv3hr9wcmx6p1y-download-fastrand-2.4.1.drv'...
building '/nix/store/8y1cz7c5j692rhh5mkrm1xrhhlh7s67a-download-ff-0.13.1.drv'...
building '/nix/store/7jnsq4lghichbvlqaxssqdnqv9zi5hjk-download-figment-0.10.19.drv'...
building '/nix/store/4cqj16n5h9ws65hdk5cxln2n1hmsj62a-download-filetime-0.2.29.drv'...
building '/nix/store/w4cwmyl50rn91nav7w7rk9qhz0waxjfc-download-find-msvc-tools-0.1.9.drv'...
building '/nix/store/92dx2zmjhnwgfwymsfl74pbh7mg09gqp-download-flate2-1.1.9.drv'...
building '/nix/store/5pv7a7db9d6ganlf8d23f3yjiyg96cqx-download-foldhash-0.1.5.drv'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
download-duration-str> % Total % Received % Xferd Average Speed Time Time Time Current
download-duration-str> Dload Upload Total Spent Left Speed
download-duration-str> 100 21713 100 21713 0 0 55857 0 0
download-dyn-clone> % Total % Received % Xferd Average Speed Time Time Time Current
download-dyn-clone> Dload Upload Total Spent Left Speed
download-dyn-clone> 100 13134 100 13134 0 0 33058 0 0
download-ec25519> % Total % Received % Xferd Average Speed Time Time Time Current
download-ec25519> Dload Upload Total Spent Left Speed
download-ec25519> 100 29243 100 29243 0 0 74181 0 0
download-ed25519> % Total % Received % Xferd Average Speed Time Time Time Current
download-ed25519> Dload Upload Total Spent Left Speed
download-ed25519> 100 17118 100 17118 0 0 42262 0 0
download-erased-serde> % Total % Received % Xferd Average Speed Time Time Time Current
download-erased-serde> Dload Upload Total Spent Left Speed
download-erased-serde> 100 31339 100 31339 0 0 78843 0 0
download-errno> structuredAttrs is enabled
download-errno>
download-errno> trying https://static.crates.io/crates/errno/0.3.14/download
download-errno> % Total % Received % Xferd Average Speed Time Time Time Current
download-errno> Dload Upload Total Spent Left Speed
download-errno> 100 12002 100 12002 0 0 30305 0 0
download-fast-glob> structuredAttrs is enabled
download-fast-glob>
download-fast-glob> trying https://static.crates.io/crates/fast-glob/0.3.3/download
download-fast-glob> % Total % Received % Xferd Average Speed Time Time Time Current
download-fast-glob> Dload Upload Total Spent Left Speed
download-fastrand> structuredAttrs is enabled
download-fastrand>
download-fastrand> trying https://static.crates.io/crates/fastrand/2.4.1/download
download-ff> structuredAttrs is enabled
download-ff>
download-ff> trying https://static.crates.io/crates/ff/0.13.1/download
download-figment> structuredAttrs is enabled
download-figment>
download-figment> trying https://static.crates.io/crates/figment/0.10.19/download
download-filetime> structuredAttrs is enabled
download-filetime>
download-filetime> trying https://static.crates.io/crates/filetime/0.2.29/download
download-find-msvc-tools> structuredAttrs is enabled
download-find-msvc-tools>
download-find-msvc-tools> trying https://static.crates.io/crates/find-msvc-tools/0.1.9/download
download-flate2> structuredAttrs is enabled
copying path '/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4' from 'https://cache.nixos.org'...
copying path '/nix/store/395xldm7zib0vjampmwydy7rd9l8s0a8-unit-systemd-tmpfiles-resetup.service' from 'https://cache.nixos.org'...
copying path '/nix/store/2ahkwinba4kcs5d96rv3jd4n3l2mn9gi-unit-script-suid-sgid-wrappers-start' from 'https://cache.nixos.org'...
copying path '/nix/store/65piy3imx0gzqibhf8nqmnva70wln2hj-nixos-test-driver-1.1' from 'https://cache.nixos.org'...
copying path '/nix/store/jg9xadqy2n82vkq67raclifaq83ca0xv-grub-config.xml' from 'https://cache.nixos.org'...
copying path '/nix/store/849i2c2h3wpcsh2hka6bxrbzilg6c9vg-radicle-node-chroot-paths' from 'https://cache.nixos.org'...
copying path '/nix/store/xc2rajnxgzp3i3wn18r59rqif19i751v-udev-rules' from 'https://cache.nixos.org'...
copying path '/nix/store/cmz5hzprw6irnhpmpaxc3rv7wk2x5gx0-rad-system' from 'https://cache.nixos.org'...
copying path '/nix/store/zijc5ahmwjc5jki6wkwqncp1p09n81xw-unit-radicle-node.service' from 'https://cache.nixos.org'...
copying path '/nix/store/qk9arascdv7gw3c6j7k42bj4524cfr3y-unit-getty-.service' from 'https://cache.nixos.org'...
copying path '/nix/store/nj0f0cymxz2wanlx67f3yx81fzk3kaj7-unit-nixos-activation.service' from 'https://cache.nixos.org'...
building '/nix/store/dnc8285jl6gff46ghbyi7qlr2h74055y-download-form_urlencoded-1.2.2.drv'...
building '/nix/store/fkzw7afmzdz0650r4s4gla8lw74qk1dd-download-fs2-0.4.3.drv'...
building '/nix/store/fzxjv280w8v6ia8x0l0bk6xavq21gkjp-download-fs_at-0.2.1.drv'...
building '/nix/store/5qfjwinif12z746mw4mfwjrmlasy41nf-download-futures-core-0.3.32.drv'...
building '/nix/store/yv0pnx14dcmq1z5a52bzwvi36ygm47kg-download-futures-task-0.3.32.drv'...
building '/nix/store/6d1yyz2z11dyd6gpzjywzngar54vdjlc-download-futures-util-0.3.32.drv'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
download-fast-glob> 100 14921 100 14921 0 0 35055 0 0
download-fastrand> % Total % Received % Xferd Average Speed Time Time Time Current
download-fastrand> Dload Upload Total Spent Left Speed
download-fastrand> 100 20773 100 20773 0 0 47700 0 0
download-ff> % Total % Received % Xferd Average Speed Time Time Time Current
download-ff> Dload Upload Total Spent Left Speed
download-ff> 100 18607 100 18607 0 0 43014 0 0
download-figment> % Total % Received % Xferd Average Speed Time Time Time Current
download-figment> Dload Upload Total Spent Left Speed
download-figment> 100 70111 100 70111 0 0 134.6k 0 0
download-filetime> % Total % Received % Xferd Average Speed Time Time Time Current
download-filetime> Dload Upload Total Spent Left Speed
download-filetime> 100 16977 100 16977 0 0 42078 0 0
download-find-msvc-tools> % Total % Received % Xferd Average Speed Time Time Time Current
download-find-msvc-tools> Dload Upload Total Spent Left Speed
download-find-msvc-tools> 100 31493 100 31493 0 0 78217 0 0
download-flate2>
download-flate2> trying https://static.crates.io/crates/flate2/1.1.9/download
download-flate2> % Total % Received % Xferd Average Speed Time Time Time Current
download-flate2> Dload Upload Total Spent Left Speed
download-flate2> 100 82745 100 82745 0 0 156.2k 0 0
download-foldhash> structuredAttrs is enabled
download-foldhash>
download-foldhash> trying https://static.crates.io/crates/foldhash/0.1.5/download
download-foldhash> % Total % Received % Xferd Average Speed Time Time Time Current
download-foldhash> Dload Upload Total Spent Left Speed
download-foldhash> 100 21901 100 21901 0 0 55305 0 0
download-form_urlencoded> structuredAttrs is enabled
download-form_urlencoded>
download-form_urlencoded> trying https://static.crates.io/crates/form_urlencoded/1.2.2/download
download-form_urlencoded> % Total % Received % Xferd Average Speed Time Time Time Current
download-form_urlencoded> Dload Upload Total Spent Left Speed
download-fs2> structuredAttrs is enabled
download-fs2>
download-fs2> trying https://static.crates.io/crates/fs2/0.4.3/download
download-fs_at> structuredAttrs is enabled
download-fs_at>
download-fs_at> trying https://static.crates.io/crates/fs_at/0.2.1/download
download-futures-core> structuredAttrs is enabled
download-futures-core>
download-futures-core> trying https://static.crates.io/crates/futures-core/0.3.32/download
download-futures-task> structuredAttrs is enabled
download-futures-task>
download-futures-task> trying https://static.crates.io/crates/futures-task/0.3.32/download
copying path '/nix/store/l1lswih6fzqyzfzz676h9xi91wbarq7j-X-Restart-Triggers-systemd-udevd' from 'https://cache.nixos.org'...
copying path '/nix/store/9ypz1lyj24ywa6vi7rmf515rf1kcn6r1-unit-podman-prune.service' from 'https://cache.nixos.org'...
copying path '/nix/store/i2yqcgj4qwl24fi58wsk1h09gp4cgnj1-install-grub.sh' from 'https://cache.nixos.org'...
copying path '/nix/store/yn2vm2chck2vs1rs2dsc5kvp80gbwbc3-unit-suid-sgid-wrappers.service' from 'https://cache.nixos.org'...
building '/nix/store/d825g9l0m2w6fxlakm7ggv35c1hlrl1k-download-generator-0.7.5.drv'...
building '/nix/store/if6zc9brnj6s0nhk6nqg1mds3wg8hkxm-download-getopts-0.2.24.drv'...
building '/nix/store/mbgmxfm6gvdq4fp9v81jc5vpqbas4lja-download-getrandom-0.2.17.drv'...
building '/nix/store/r82fxxmgqy1dfigzd6am1wfbpf34y26z-download-getrandom-0.3.4.drv'...
building '/nix/store/nqcal54lprm9592f2wxca4nzrylaqz7v-download-getrandom-0.4.3.drv'...
building '/nix/store/gycfkk57mvf1vq9wv3cx65s7x8hnbn33-download-ghash-0.5.1.drv'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
download-form_urlencoded> 100 9347 100 9347 0 0 25560 0 0
download-fs2> % Total % Received % Xferd Average Speed Time Time Time Current
download-fs2> Dload Upload Total Spent Left Speed
download-fs2> 100 13138 100 13138 0 0 33177 0 0
download-fs_at> % Total % Received % Xferd Average Speed Time Time Time Current
download-fs_at> Dload Upload Total Spent Left Speed
download-fs_at> 100 35800 100 35800 0 0 89381 0 0
download-futures-core> % Total % Received % Xferd Average Speed Time Time Time Current
download-futures-core> Dload Upload Total Spent Left Speed
download-futures-core> 100 14684 100 14684 0 0 39059 0 0
download-futures-task> % Total % Received % Xferd Average Speed Time Time Time Current
download-futures-task> Dload Upload Total Spent Left Speed
download-futures-task> 100 11377 100 11377 0 0 30616 0 0
download-futures-util> structuredAttrs is enabled
download-futures-util>
download-futures-util> trying https://static.crates.io/crates/futures-util/0.3.32/download
download-futures-util> % Total % Received % Xferd Average Speed Time Time Time Current
download-futures-util> Dload Upload Total Spent Left Speed
download-generator> structuredAttrs is enabled
download-generator>
download-generator> trying https://static.crates.io/crates/generator/0.7.5/download
download-getopts> structuredAttrs is enabled
download-getopts>
download-getopts> trying https://static.crates.io/crates/getopts/0.2.24/download
download-getrandom> structuredAttrs is enabled
download-getrandom>
download-getrandom> trying https://static.crates.io/crates/getrandom/0.2.17/download
download-getrandom> structuredAttrs is enabled
download-getrandom>
download-getrandom> trying https://static.crates.io/crates/getrandom/0.3.4/download
download-getrandom> structuredAttrs is enabled
copying path '/nix/store/8dns3yz1kag62837hjwpydx12nxfrzbl-unit-systemd-udevd.service' from 'https://cache.nixos.org'...
copying path '/nix/store/39wvm11rhrfzfz0zd6df2pzinv4av48s-docker-29.6.0' from 'https://cache.nixos.org'...
building '/nix/store/gsflxy7g4d0c7n9laiszwmz8fvc0ksvn-download-git-ref-format-0.6.0.drv'...
building '/nix/store/nr6f39q109s77lgrf9wqq5dd9c7x6pd2-download-git-ref-format-core-0.6.0.drv'...
building '/nix/store/7fcwpyhzfyrsa6w2c3f6dx1mqvk89faa-download-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/qyw8wkrwjd9zy0bwwdxbyy9rnbv869s7-download-git2-0.20.4.drv'...
building '/nix/store/r46d0rlhby2rdmkf6pwd6ai4az4rd8wv-download-globset-0.4.18.drv'...
building '/nix/store/03129584jpmfcwcryb4ghvps8srz3jdg-download-globwalk-0.9.1.drv'...
building '/nix/store/7ygi4s4my8gxkwap19ipmcl0hvz6lpix-download-hashbrown-0.15.5.drv'...
building '/nix/store/wxmjjlbnqqc2pybzv0g2v2h03hc2qk9a-download-hashbrown-0.17.1.drv'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
download-futures-util> 100 164.8k 100 164.8k 0 0 267.6k 0 0
download-generator> % Total % Received % Xferd Average Speed Time Time Time Current
download-generator> Dload Upload Total Spent Left Speed
download-generator> 100 29947 100 29947 0 0 75984 0 0
download-getopts> % Total % Received % Xferd Average Speed Time Time Time Current
download-getopts> Dload Upload Total Spent Left Speed
download-getopts> 100 21467 100 21467 0 0 55829 0 0
download-getrandom> % Total % Received % Xferd Average Speed Time Time Time Current
download-getrandom> Dload Upload Total Spent Left Speed
download-getrandom> 100 40780 100 40780 0 0 86408 0 0
download-getrandom> % Total % Received % Xferd Average Speed Time Time Time Current
download-getrandom> Dload Upload Total Spent Left Speed
download-getrandom> 100 50932 100 50932 0 0 97994 0 0
download-getrandom>
download-getrandom> trying https://static.crates.io/crates/getrandom/0.4.3/download
download-getrandom> % Total % Received % Xferd Average Speed Time Time Time Current
download-getrandom> Dload Upload Total Spent Left Speed
download-getrandom> 100 52437 100 52437 0 0 105.0k 0 0
download-ghash> structuredAttrs is enabled
download-ghash>
download-ghash> trying https://static.crates.io/crates/ghash/0.5.1/download
download-ghash> % Total % Received % Xferd Average Speed Time Time Time Current
download-ghash> Dload Upload Total Spent Left Speed
download-ghash> 100 9482 100 9482 0 0 25583 0 0
download-git-ref-format> structuredAttrs is enabled
download-git-ref-format>
download-git-ref-format> trying https://static.crates.io/crates/git-ref-format/0.6.0/download
download-git-ref-format> % Total % Received % Xferd Average Speed Time Time Time Current
download-git-ref-format> Dload Upload Total Spent Left Speed
download-git-ref-format-core> structuredAttrs is enabled
download-git-ref-format-core>
download-git-ref-format-core> trying https://static.crates.io/crates/git-ref-format-core/0.6.0/download
download-git-ref-format-macro> structuredAttrs is enabled
download-git-ref-format-macro>
download-git-ref-format-macro> trying https://static.crates.io/crates/git-ref-format-macro/0.6.0/download
download-git2> structuredAttrs is enabled
download-git2>
download-git2> trying https://static.crates.io/crates/git2/0.20.4/download
download-globset> structuredAttrs is enabled
download-globset>
download-globset> trying https://static.crates.io/crates/globset/0.4.18/download
download-globwalk> structuredAttrs is enabled
download-globwalk>
download-globwalk> trying https://static.crates.io/crates/globwalk/0.9.1/download
download-hashbrown> structuredAttrs is enabled
download-hashbrown>
download-hashbrown> trying https://static.crates.io/crates/hashbrown/0.15.5/download
copying path '/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0' from 'https://cache.nixos.org'...
building '/nix/store/7d18mndrc1l73qj0cb898zsvhp2023jc-download-hashlink-0.10.0.drv'...
building '/nix/store/99h8hss3fk9p3jhd0xrl3kvbqdwadiy3-download-hashlink-0.9.1.drv'...
building '/nix/store/w92fb9j2y31b2bp5imvswhpmyy40gqh9-download-html-escape-0.2.13.drv'...
building '/nix/store/5y9frf169ckr2lpybdqsnqah7i9vswmh-download-html-page-0.5.0.drv'...
building '/nix/store/9aax92p06m6y1dgsl18hi0haf2wj0sma-download-humansize-2.1.3.drv'...
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
download-git-ref-format> 100 4710 100 4710 0 0 13038 0 0
download-git-ref-format-core> % Total % Received % Xferd Average Speed Time Time Time Current
download-git-ref-format-core> Dload Upload Total Spent Left Speed
download-git-ref-format-core> 100 13350 100 13350 0 0 33705 0 0
download-git-ref-format-macro> % Total % Received % Xferd Average Speed Time Time Time Current
download-git-ref-format-macro> Dload Upload Total Spent Left Speed
download-git-ref-format-macro> 100 2883 100 2883 0 0 7122 0 0
download-git2> % Total % Received % Xferd Average Speed Time Time Time Current
download-git2> Dload Upload Total Spent Left Speed
download-globset> % Total % Received % Xferd Average Speed Time Time Time Current
download-globset> Dload Upload Total Spent Left Speed
download-globset> 100 28970 100 28970 0 0 72465 0 0
download-globwalk> % Total % Received % Xferd Average Speed Time Time Time Current
download-globwalk> Dload Upload Total Spent Left Speed
download-globwalk> 100 12572 100 12572 0 0 33542 0 0
download-hashbrown> % Total % Received % Xferd Average Speed Time Time Time Current
download-hashbrown> Dload Upload Total Spent Left Speed
download-hashbrown> structuredAttrs is enabled
download-hashbrown>
download-hashbrown> trying https://static.crates.io/crates/hashbrown/0.17.1/download
download-hashbrown> % Total % Received % Xferd Average Speed Time Time Time Current
download-hashbrown> Dload Upload Total Spent Left Speed
download-hashlink> structuredAttrs is enabled
download-hashlink>
download-hashlink> trying https://static.crates.io/crates/hashlink/0.10.0/download
download-hashlink> structuredAttrs is enabled
download-hashlink>
download-hashlink> trying https://static.crates.io/crates/hashlink/0.9.1/download
download-html-escape> structuredAttrs is enabled
download-html-escape>
download-html-escape> trying https://static.crates.io/crates/html-escape/0.2.13/download
download-html-page> structuredAttrs is enabled
download-html-page>
download-html-page> trying https://static.crates.io/crates/html-page/0.5.0/download
building '/nix/store/n5c000s701ngwqx1cvgj33s6c5xg2shs-download-icu_collections-2.2.0.drv'...
building '/nix/store/8p4r7050xizyljr1idwjijibhaj4v07j-download-icu_locale_core-2.2.0.drv'...
building '/nix/store/s4qf1wkmzhjglf0gwwqiibcpba79x15b-download-icu_normalizer-2.2.0.drv'...
building '/nix/store/j6jx98v0grwq233xsqj72k2zgr0q6548-download-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/n0qj1k60grb3xwrsxb6mp7dgpch34n0k-download-icu_properties-2.2.0.drv'...
building '/nix/store/rw108jzx1dvkcwjaslvyiq4qxgsskqn9-download-icu_properties_data-2.2.0.drv'...
building '/nix/store/jfdw09nk480q436pwgpkcn5yrvxgcsjl-download-icu_provider-2.2.0.drv'...
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
download-git2> 100 218.9k 100 218.9k 0 0 340.0k 0 0
download-hashbrown> 100 137.6k 100 137.6k 0 0 229.2k 0 0
download-hashbrown> 100 151.8k 100 151.8k 0 0 250.3k 0 0
download-hashlink> % Total % Received % Xferd Average Speed Time Time Time Current
download-hashlink> Dload Upload Total Spent Left Speed
download-hashlink> 100 29402 100 29402 0 0 74333 0 0
download-hashlink> % Total % Received % Xferd Average Speed Time Time Time Current
download-hashlink> Dload Upload Total Spent Left Speed
download-hashlink> 100 28928 100 28928 0 0 69765 0 0
download-html-escape> % Total % Received % Xferd Average Speed Time Time Time Current
download-html-escape> Dload Upload Total Spent Left Speed
download-html-escape> 100 23345 100 23345 0 0 60196 0 0
download-html-page> % Total % Received % Xferd Average Speed Time Time Time Current
download-html-page> Dload Upload Total Spent Left Speed
download-html-page> 100 9201 100 9201 0 0 25017 0 0
download-humansize> structuredAttrs is enabled
download-humansize>
download-humansize> trying https://static.crates.io/crates/humansize/2.1.3/download
download-humansize> % Total % Received % Xferd Average Speed Time Time Time Current
download-humansize> Dload Upload Total Spent Left Speed
download-humansize> 100 11953 100 11953 0 0 30146 0 0
download-icu_collections> structuredAttrs is enabled
download-icu_collections>
download-icu_collections> trying https://static.crates.io/crates/icu_collections/2.2.0/download
download-icu_locale_core> structuredAttrs is enabled
download-icu_locale_core>
download-icu_locale_core> trying https://static.crates.io/crates/icu_locale_core/2.2.0/download
download-icu_normalizer> structuredAttrs is enabled
download-icu_normalizer>
download-icu_normalizer> trying https://static.crates.io/crates/icu_normalizer/2.2.0/download
download-icu_normalizer_data> structuredAttrs is enabled
download-icu_normalizer_data>
download-icu_normalizer_data> trying https://static.crates.io/crates/icu_normalizer_data/2.2.0/download
download-icu_properties> structuredAttrs is enabled
download-icu_properties>
download-icu_properties> trying https://static.crates.io/crates/icu_properties/2.2.0/download
download-icu_properties_data> structuredAttrs is enabled
download-icu_properties_data>
download-icu_properties_data> trying https://static.crates.io/crates/icu_properties_data/2.2.0/download
building '/nix/store/hpblrsck2zflm4w9bdwwq5pwqg37hdib-download-idna-1.1.0.drv'...
building '/nix/store/na0yxx0p15xhvp567kkvg820nkxv3zsv-download-idna_adapter-1.2.2.drv'...
building '/nix/store/3025rgrycdbyp9y2jpw2f8yvsz3nxj3g-download-ignore-0.4.27.drv'...
building '/nix/store/fd6zklc901fw2ppkwnfskimvisghkx47-download-indexmap-2.14.0.drv'...
building '/nix/store/zm2k1pq1xshy8cny8gccm27ric5l68hn-download-inlinable_string-0.1.15.drv'...
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
download-icu_collections> % Total % Received % Xferd Average Speed Time Time Time Current
download-icu_collections> Dload Upload Total Spent Left Speed
download-icu_collections> 100 88011 100 88011 0 0 164.8k 0 0
download-icu_locale_core> % Total % Received % Xferd Average Speed Time Time Time Current
download-icu_locale_core> Dload Upload Total Spent Left Speed
download-icu_locale_core> 100 78639 100 78639 0 0 141.3k 0 0
download-icu_normalizer> % Total % Received % Xferd Average Speed Time Time Time Current
download-icu_normalizer> Dload Upload Total Spent Left Speed
download-icu_normalizer> 100 78154 100 78154 0 0 150.5k 0 0
download-icu_normalizer_data> % Total % Received % Xferd Average Speed Time Time Time Current
download-icu_normalizer_data> Dload Upload Total Spent Left Speed
download-icu_properties> % Total % Received % Xferd Average Speed Time Time Time Current
download-icu_properties> Dload Upload Total Spent Left Speed
download-icu_properties_data> % Total % Received % Xferd Average Speed Time Time Time Current
download-icu_properties_data> Dload Upload Total Spent Left Speed
download-icu_provider> structuredAttrs is enabled
download-icu_provider>
download-icu_provider> trying https://static.crates.io/crates/icu_provider/2.2.0/download
download-icu_provider> % Total % Received % Xferd Average Speed Time Time Time Current
download-icu_provider> Dload Upload Total Spent Left Speed
download-idna> structuredAttrs is enabled
download-idna>
download-idna> trying https://static.crates.io/crates/idna/1.1.0/download
download-idna_adapter> structuredAttrs is enabled
download-idna_adapter>
download-idna_adapter> trying https://static.crates.io/crates/idna_adapter/1.2.2/download
download-ignore> structuredAttrs is enabled
download-ignore>
download-ignore> trying https://static.crates.io/crates/ignore/0.4.27/download
download-indexmap> structuredAttrs is enabled
download-indexmap>
download-indexmap> trying https://static.crates.io/crates/indexmap/2.14.0/download
building '/nix/store/8r5wqxx9ijqcj2gzhmsyl0a148as0j6f-download-inout-0.1.4.drv'...
building '/nix/store/qgip90qqvsrl7dcdqhib2z494lg3cpm8-download-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/783b2h9iy5andishhvv9j4f0kk2a8iwh-download-itoa-1.0.18.drv'...
building '/nix/store/718x0p28xbyj9czcixw36f3fm3k16jy8-download-jobserver-0.1.34.drv'...
building '/nix/store/vzywvzzfqf85lh2k39x5ab0li9misacg-download-js-sys-0.3.103.drv'...
building '/nix/store/288p63drny0j28g7f0rq3d69v530awm1-download-keccak-0.1.6.drv'...
building '/nix/store/zzvn1pz6y97zp2swhmqykyjqfgfx2nir-download-libc-0.2.186.drv'...
building '/nix/store/6ch425w9pncqviikzzhwrhg3zfailfig-download-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
download-icu_normalizer_data> 100 67134 100 67134 0 0 131.0k 0 0
download-icu_properties> 100 63950 100 63950 0 0 124.4k 0 0
download-icu_properties_data> 100 164.9k 100 164.9k 0 0 252.6k 0 0
download-icu_provider> 100 51620 100 51620 0 0 104.3k 0 0
download-idna> % Total % Received % Xferd Average Speed Time Time Time Current
download-idna> Dload Upload Total Spent Left Speed
download-idna> 100 145.2k 100 145.2k 0 0 226.3k 0 0
download-idna_adapter> % Total % Received % Xferd Average Speed Time Time Time Current
download-idna_adapter> Dload Upload Total Spent Left Speed
download-idna_adapter> 100 10444 100 10444 0 0 28426 0 0
download-ignore> % Total % Received % Xferd Average Speed Time Time Time Current
download-ignore> Dload Upload Total Spent Left Speed
download-ignore> 100 59603 100 59603 0 0 104.7k 0 0
download-indexmap> % Total % Received % Xferd Average Speed Time Time Time Current
download-indexmap> Dload Upload Total Spent Left Speed
download-indexmap> 100 101.6k 100 101.6k 0 0 190.7k 0 0
download-inlinable_string> structuredAttrs is enabled
download-inlinable_string>
download-inlinable_string> trying https://static.crates.io/crates/inlinable_string/0.1.15/download
download-inlinable_string> % Total % Received % Xferd Average Speed Time Time Time Current
download-inlinable_string> Dload Upload Total Spent Left Speed
download-inlinable_string> 100 19290 100 19290 0 0 49958 0 0
download-inout> structuredAttrs is enabled
download-inout>
download-inout> trying https://static.crates.io/crates/inout/0.1.4/download
download-inout> % Total % Received % Xferd Average Speed Time Time Time Current
download-inout> Dload Upload Total Spent Left Speed
download-is_terminal_polyfill> structuredAttrs is enabled
download-is_terminal_polyfill>
download-is_terminal_polyfill> trying https://static.crates.io/crates/is_terminal_polyfill/1.70.2/download
download-itoa> structuredAttrs is enabled
download-itoa>
download-itoa> trying https://static.crates.io/crates/itoa/1.0.18/download
download-jobserver> structuredAttrs is enabled
download-jobserver>
download-jobserver> trying https://static.crates.io/crates/jobserver/0.1.34/download
download-js-sys> structuredAttrs is enabled
download-js-sys>
download-js-sys> trying https://static.crates.io/crates/js-sys/0.3.103/download
download-keccak> structuredAttrs is enabled
download-keccak>
download-keccak> trying https://static.crates.io/crates/keccak/0.1.6/download
download-libc> structuredAttrs is enabled
building '/nix/store/k4fcv1fnrzbxj58p1ymf3snrv6qwihr1-download-libm-0.2.16.drv'...
building '/nix/store/zcv6098hgh80z1q0w6qz4y1jr0w24fmk-download-libz-sys-1.1.29.drv'...
building '/nix/store/lhgaw12fgmknfvv5gsym1078nrrdajhj-download-line-col-0.2.1.drv'...
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
download-inout> 100 11280 100 11280 0 0 30224 0 0
download-is_terminal_polyfill> % Total % Received % Xferd Average Speed Time Time Time Current
download-is_terminal_polyfill> Dload Upload Total Spent Left Speed
download-is_terminal_polyfill> 100 7548 100 7548 0 0 20806 0 0
download-itoa> % Total % Received % Xferd Average Speed Time Time Time Current
download-itoa> Dload Upload Total Spent Left Speed
download-itoa> 100 15935 100 15935 0 0 43059 0 0
download-jobserver> % Total % Received % Xferd Average Speed Time Time Time Current
download-jobserver> Dload Upload Total Spent Left Speed
download-js-sys> % Total % Received % Xferd Average Speed Time Time Time Current
download-js-sys> Dload Upload Total Spent Left Speed
download-keccak> % Total % Received % Xferd Average Speed Time Time Time Current
download-keccak> Dload Upload Total Spent Left Speed
download-libc>
download-libc> trying https://static.crates.io/crates/libc/0.2.186/download
download-libc> % Total % Received % Xferd Average Speed Time Time Time Current
download-libc> Dload Upload Total Spent Left Speed
download-libgit2-sys> structuredAttrs is enabled
download-libgit2-sys>
download-libgit2-sys> trying https://static.crates.io/crates/libgit2-sys/0.18.5+1.9.4/download
download-libm> structuredAttrs is enabled
download-libm>
download-libm> trying https://static.crates.io/crates/libm/0.2.16/download
download-libz-sys> structuredAttrs is enabled
building '/nix/store/ajx2vn426byk84klxccpvb2ngm7k9409-download-linux-raw-sys-0.12.1.drv'...
building '/nix/store/g02arpakgp5p0jpcmph6pl841i7bbl41-download-litemap-0.8.2.drv'...
building '/nix/store/6mdp36j3y0pihcf4nhn64jz5nz6c6fjy-download-log-0.4.33.drv'...
building '/nix/store/f6bdmrnwmhzkg61ngwp3inywbqfhnhdg-download-loom-0.5.6.drv'...
building '/nix/store/fvip7pjl7k44kpnwqgrcw8kvhc7vnfmv-download-marked-yaml-0.7.2.drv'...
building '/nix/store/8r1rzbz1vl4hl3q0nkdzj2dg6glmyfss-download-marked-yaml-0.8.0.drv'...
building '/nix/store/m1nsgp2xd0d2rawxzig19a3ch97i50yn-download-match-lookup-0.1.2.drv'...
building '/nix/store/30iyz40sda24q0s560p6q1gira8pd2df-download-matchers-0.2.0.drv'...
building '/nix/store/1jjqza5lbv5kw657l9pwa179w4nfppcc-download-memchr-2.8.2.drv'...
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
download-jobserver> 100 29013 100 29013 0 0 73312 0 0
download-js-sys> 100 105.8k 100 105.8k 0 0 187.2k 0 0
download-keccak> 100 13529 100 13529 0 0 36365 0 0
download-libc> 100 802.6k 100 802.6k 0 0 947.3k 0 0
download-libgit2-sys> % Total % Received % Xferd Average Speed Time Time Time Current
download-libgit2-sys> Dload Upload Total Spent Left Speed
download-libm> % Total % Received % Xferd Average Speed Time Time Time Current
download-libm> Dload Upload Total Spent Left Speed
download-libm> 100 160.3k 100 160.3k 0 0 231.9k 0 0
download-libz-sys>
download-libz-sys> trying https://static.crates.io/crates/libz-sys/1.1.29/download
download-libz-sys> % Total % Received % Xferd Average Speed Time Time Time Current
download-libz-sys> Dload Upload Total Spent Left Speed
download-line-col> structuredAttrs is enabled
download-line-col>
download-line-col> trying https://static.crates.io/crates/line-col/0.2.1/download
download-line-col> % Total % Received % Xferd Average Speed Time Time Time Current
download-line-col> Dload Upload Total Spent Left Speed
download-line-col> 100 3915 100 3915 0 0 9635 0 0
download-linux-raw-sys> structuredAttrs is enabled
download-linux-raw-sys>
download-linux-raw-sys> trying https://static.crates.io/crates/linux-raw-sys/0.12.1/download
download-linux-raw-sys> % Total % Received % Xferd Average Speed Time Time Time Current
download-linux-raw-sys> Dload Upload Total Spent Left Speed
download-litemap> structuredAttrs is enabled
download-litemap>
download-litemap> trying https://static.crates.io/crates/litemap/0.8.2/download
download-litemap> % Total % Received % Xferd Average Speed Time Time Time Current
download-litemap> Dload Upload Total Spent Left Speed
download-log> structuredAttrs is enabled
download-log>
download-log> trying https://static.crates.io/crates/log/0.4.33/download
download-loom> structuredAttrs is enabled
download-loom>
download-loom> trying https://static.crates.io/crates/loom/0.5.6/download
download-marked-yaml> structuredAttrs is enabled
download-marked-yaml>
download-marked-yaml> trying https://static.crates.io/crates/marked-yaml/0.7.2/download
download-marked-yaml> structuredAttrs is enabled
download-marked-yaml>
download-marked-yaml> trying https://static.crates.io/crates/marked-yaml/0.8.0/download
download-match-lookup> structuredAttrs is enabled
download-match-lookup>
download-match-lookup> trying https://static.crates.io/crates/match-lookup/0.1.2/download
download-matchers> structuredAttrs is enabled
building '/nix/store/4n7dykam7aa960rkxbikziw50rzjlc5m-download-memoffset-0.9.1.drv'...
building '/nix/store/s92432jmzkq8rbdr2869711h41r7zyqn-download-miniz_oxide-0.8.9.drv'...
building '/nix/store/6a58v1gf0xa7cx3gzm60k4rj8wmil640-download-multibase-0.9.3.drv'...
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
download-libgit2-sys> 100 1.78M 100 1.78M 0 0 1.61M 0 00:01 00:01 0
download-libz-sys> 100 866.9k 100 866.9k 0 0 0.98M 0 0
download-litemap> 100 34572 100 34572 0 0 85672 0 0
download-log> % Total % Received % Xferd Average Speed Time Time Time Current
download-log> Dload Upload Total Spent Left Speed
download-loom> % Total % Received % Xferd Average Speed Time Time Time Current
download-loom> Dload Upload Total Spent Left Speed
download-marked-yaml> % Total % Received % Xferd Average Speed Time Time Time Current
download-marked-yaml> Dload Upload Total Spent Left Speed
download-marked-yaml> % Total % Received % Xferd Average Speed Time Time Time Current
download-marked-yaml> Dload Upload Total Spent Left Speed
download-match-lookup> % Total % Received % Xferd Average Speed Time Time Time Current
download-match-lookup> Dload Upload Total Spent Left Speed
download-matchers>
download-matchers> trying https://static.crates.io/crates/matchers/0.2.0/download
download-memchr> structuredAttrs is enabled
download-memchr>
download-memchr> trying https://static.crates.io/crates/memchr/2.8.2/download
download-memoffset> structuredAttrs is enabled
download-memoffset>
download-memoffset> trying https://static.crates.io/crates/memoffset/0.9.1/download
download-miniz_oxide> structuredAttrs is enabled
building '/nix/store/pg2grkw9gw6ybk9h6sxflm5wlhsz1gmv-download-nix-0.31.3.drv'...
building '/nix/store/wi5jh36zbmk26wshm2mbiahdpgshq77m-download-nonempty-0.11.0.drv'...
building '/nix/store/swsx3bc94hk6fd8w8c065qgbbbybwx03-download-nonempty-0.12.0.drv'...
building '/nix/store/cy7261ib4qbhng7i2k6lxv5ziqii94rd-download-nonempty-0.9.0.drv'...
building '/nix/store/h4fjbga3s32qi9kry644bgss0vsisdcl-download-normpath-1.5.1.drv'...
building '/nix/store/bjmk2gcnyz0bvm663j8v78wbh83d91bj-download-nu-ansi-term-0.50.3.drv'...
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
download-log> 100 52997 100 52997 0 0 105.6k 0 0
download-loom> 100 72186 100 72186 0 0 130.6k 0 0
download-marked-yaml> 100 24771 100 24771 0 0 59484 0 0
download-marked-yaml> 100 27191 100 27191 0 0 69399 0 0
download-match-lookup> 100 2010 100 2010 0 0 5558 0 0
download-matchers> % Total % Received % Xferd Average Speed Time Time Time Current
download-matchers> Dload Upload Total Spent Left Speed
download-matchers> 100 7075 100 7075 0 0 17219 0 0
download-memchr> % Total % Received % Xferd Average Speed Time Time Time Current
download-memchr> Dload Upload Total Spent Left Speed
download-memchr> 100 99069 100 99069 0 0 183.1k 0 0
download-memoffset> % Total % Received % Xferd Average Speed Time Time Time Current
download-memoffset> Dload Upload Total Spent Left Speed
download-memoffset> 100 9032 100 9032 0 0 24348 0 0
download-miniz_oxide>
download-miniz_oxide> trying https://static.crates.io/crates/miniz_oxide/0.8.9/download
download-miniz_oxide> % Total % Received % Xferd Average Speed Time Time Time Current
download-miniz_oxide> Dload Upload Total Spent Left Speed
download-multibase> structuredAttrs is enabled
download-multibase>
download-multibase> trying https://static.crates.io/crates/multibase/0.9.3/download
download-multibase> % Total % Received % Xferd Average Speed Time Time Time Current
download-multibase> Dload Upload Total Spent Left Speed
download-multibase> 100 17913 100 17913 0 0 47280 0 0
download-nix> structuredAttrs is enabled
download-nix>
download-nix> trying https://static.crates.io/crates/nix/0.31.3/download
download-nonempty> structuredAttrs is enabled
download-nonempty>
download-nonempty> trying https://static.crates.io/crates/nonempty/0.11.0/download
download-nonempty> structuredAttrs is enabled
download-nonempty>
download-nonempty> trying https://static.crates.io/crates/nonempty/0.12.0/download
download-nonempty> structuredAttrs is enabled
download-nonempty>
download-nonempty> trying https://static.crates.io/crates/nonempty/0.9.0/download
download-normpath> structuredAttrs is enabled
download-normpath>
download-normpath> trying https://static.crates.io/crates/normpath/1.5.1/download
building '/nix/store/y7d5a4h1f7ljb3n9g1h8f24nys6zlsnb-download-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y2dbqxfydmz0nxc05jfizjdpr480v5dy-download-num-conv-0.2.2.drv'...
building '/nix/store/a5i1d6ai2r5wfd4nblsz1s78w1vpsx3d-download-objc2-0.6.4.drv'...
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
download-linux-raw-sys> 100 2.86M 100 2.86M 0 0 2.64M 0 00:01 00:01 0
download-miniz_oxide> 100 67132 100 67132 0 0 130.3k 0 0
download-nix> % Total % Received % Xferd Average Speed Time Time Time Current
download-nix> Dload Upload Total Spent Left Speed
download-nonempty> % Total % Received % Xferd Average Speed Time Time Time Current
download-nonempty> Dload Upload Total Spent Left Speed
download-nonempty> 100 13278 100 13278 0 0 36000 0 0
download-nonempty> % Total % Received % Xferd Average Speed Time Time Time Current
download-nonempty> Dload Upload Total Spent Left Speed
download-nonempty> 100 13105 100 13105 0 0 35745 0 0
download-nonempty> % Total % Received % Xferd Average Speed Time Time Time Current
download-nonempty> Dload Upload Total Spent Left Speed
download-normpath> % Total % Received % Xferd Average Speed Time Time Time Current
download-normpath> Dload Upload Total Spent Left Speed
download-nu-ansi-term> structuredAttrs is enabled
download-nu-ansi-term>
download-nu-ansi-term> trying https://static.crates.io/crates/nu-ansi-term/0.50.3/download
download-num-bigint-dig> structuredAttrs is enabled
download-num-bigint-dig>
download-num-bigint-dig> trying https://static.crates.io/crates/num-bigint-dig/0.8.6/download
download-num-conv> structuredAttrs is enabled
download-num-conv>
download-num-conv> trying https://static.crates.io/crates/num-conv/0.2.2/download
building '/nix/store/s0w3mjlwvz37nbks8jngwh5wxc0bn4mh-download-objc2-encode-4.1.0.drv'...
building '/nix/store/k44gqnyrc8m12g4pszglzszi85k83bhy-download-once_cell-1.21.4.drv'...
building '/nix/store/slhhq8vm86hrb2w9zcblcif34hmsbx3p-download-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/npwvb5vmzslqqx86yl19fsbdi4haj4y9-download-opaque-debug-0.3.1.drv'...
building '/nix/store/7nr1fn76jpv3dir3yk6qqiswf7rnn21n-download-p384-0.13.1.drv'...
building '/nix/store/bgfs1dmzd71nhg1w5axy44ml89i6hg48-download-p521-0.13.3.drv'...
building '/nix/store/wv5l23g7iin3hwv8kk57q59g7d518nck-download-pbkdf2-0.12.2.drv'...
building '/nix/store/230172cy1bav8janvii7gkqibsz9ank0-download-pear-0.2.9.drv'...
building '/nix/store/hnhi1yg87yhslryk3dzdqrrq8nxl04zw-download-pear_codegen-0.2.9.drv'...
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
download-nix> 100 339.3k 100 339.3k 0 0 442.9k 0 0
download-nonempty> 100 10141 100 10141 0 0 27568 0 0
download-normpath> 100 24648 100 24648 0 0 63016 0 0
download-nu-ansi-term> % Total % Received % Xferd Average Speed Time Time Time Current
download-nu-ansi-term> Dload Upload Total Spent Left Speed
download-nu-ansi-term> 100 29597 100 29597 0 0 75283 0 0
download-num-bigint-dig> % Total % Received % Xferd Average Speed Time Time Time Current
download-num-bigint-dig> Dload Upload Total Spent Left Speed
download-num-bigint-dig> 100 123.2k 100 123.2k 0 0 209.6k 0 0
download-num-conv> % Total % Received % Xferd Average Speed Time Time Time Current
download-num-conv> Dload Upload Total Spent Left Speed
download-num-conv> 100 7441 100 7441 0 0 18073 0 0
download-objc2> structuredAttrs is enabled
download-objc2>
download-objc2> trying https://static.crates.io/crates/objc2/0.6.4/download
download-objc2> % Total % Received % Xferd Average Speed Time Time Time Current
download-objc2> Dload Upload Total Spent Left Speed
download-objc2-encode> structuredAttrs is enabled
download-objc2-encode>
download-objc2-encode> trying https://static.crates.io/crates/objc2-encode/4.1.0/download
download-objc2-encode> % Total % Received % Xferd Average Speed Time Time Time Current
download-objc2-encode> Dload Upload Total Spent Left Speed
download-once_cell> structuredAttrs is enabled
download-once_cell>
download-once_cell> trying https://static.crates.io/crates/once_cell/1.21.4/download
download-once_cell_polyfill> structuredAttrs is enabled
download-once_cell_polyfill>
download-once_cell_polyfill> trying https://static.crates.io/crates/once_cell_polyfill/1.70.2/download
download-opaque-debug> structuredAttrs is enabled
download-opaque-debug>
download-opaque-debug> trying https://static.crates.io/crates/opaque-debug/0.3.1/download
download-p384> structuredAttrs is enabled
download-p384>
download-p384> trying https://static.crates.io/crates/p384/0.13.1/download
download-p521> structuredAttrs is enabled
download-p521>
download-p521> trying https://static.crates.io/crates/p521/0.13.3/download
download-pbkdf2> structuredAttrs is enabled
download-pbkdf2>
download-pbkdf2> trying https://static.crates.io/crates/pbkdf2/0.12.2/download
download-pear> structuredAttrs is enabled
building '/nix/store/rgr2xwayx064hzj8qaps72kq31v7kkgh-download-percent-encoding-2.3.2.drv'...
building '/nix/store/axpx1zv47m5jqgl502bksavhx4c01l1g-download-pest-2.8.6.drv'...
building '/nix/store/y9fq8gqilfc3nliaz7d2h55zjyv68cnb-download-pest_derive-2.8.6.drv'...
building '/nix/store/2fsdaq046kg537d10zk138cpc7k5k65k-download-pest_generator-2.8.6.drv'...
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
download-objc2> 100 268.7k 100 268.7k 0 0 400.7k 0 0
download-objc2-encode> 100 21004 100 21004 0 0 54858 0 0
download-once_cell> % Total % Received % Xferd Average Speed Time Time Time Current
download-once_cell> Dload Upload Total Spent Left Speed
download-once_cell> 100 35010 100 35010 0 0 77959 0 0
download-once_cell_polyfill> % Total % Received % Xferd Average Speed Time Time Time Current
download-once_cell_polyfill> Dload Upload Total Spent Left Speed
download-once_cell_polyfill> 100 7448 100 7448 0 0 20363 0 0
download-opaque-debug> % Total % Received % Xferd Average Speed Time Time Time Current
download-opaque-debug> Dload Upload Total Spent Left Speed
download-opaque-debug> 100 7066 100 7066 0 0 19507 0 0
download-p384> % Total % Received % Xferd Average Speed Time Time Time Current
download-p384> Dload Upload Total Spent Left Speed
download-p521> % Total % Received % Xferd Average Speed Time Time Time Current
download-p521> Dload Upload Total Spent Left Speed
download-pbkdf2> % Total % Received % Xferd Average Speed Time Time Time Current
download-pbkdf2> Dload Upload Total Spent Left Speed
download-pbkdf2> 100 13906 100 13906 0 0 36933 0 0
download-pear>
download-pear> trying https://static.crates.io/crates/pear/0.2.9/download
download-pear> % Total % Received % Xferd Average Speed Time Time Time Current
download-pear> Dload Upload Total Spent Left Speed
download-pear_codegen> structuredAttrs is enabled
download-pear_codegen>
download-pear_codegen> trying https://static.crates.io/crates/pear_codegen/0.2.9/download
download-pear_codegen> % Total % Received % Xferd Average Speed Time Time Time Current
download-pear_codegen> Dload Upload Total Spent Left Speed
download-percent-encoding> structuredAttrs is enabled
download-percent-encoding>
download-percent-encoding> trying https://static.crates.io/crates/percent-encoding/2.3.2/download
download-pest> structuredAttrs is enabled
download-pest>
download-pest> trying https://static.crates.io/crates/pest/2.8.6/download
download-pest_derive> structuredAttrs is enabled
building '/nix/store/fmm27l0gf3m9sawp17dkzbdfic0s9107-download-pest_meta-2.8.6.drv'...
building '/nix/store/m6qfbqdqq99q5yi948c6ikij0wz5ng6g-download-pikchr-0.1.4.drv'...
building '/nix/store/22mfm070imkk8n3n2jsms44mdkym5m3n-download-pin-project-lite-0.2.17.drv'...
building '/nix/store/dvwdd261194n07kk5zi16c86w6x2fvp5-download-pkg-config-0.3.33.drv'...
building '/nix/store/vvvz74jgb91wnprpp0qx78mnqsr8f44p-download-poly1305-0.8.0.drv'...
building '/nix/store/5jdqlaqdr8cwjbd6zr0x84g26z7769ns-download-polyval-0.6.2.drv'...
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
download-p384> 100 188.4k 100 188.4k 0 0 300.3k 0 0
download-p521> 100 135.2k 100 135.2k 0 0 200.0k 0 0
download-pear> 100 19083 100 19083 0 0 50256 0 0
download-pear_codegen> 100 7250 100 7250 0 0 20172 0 0
download-percent-encoding> % Total % Received % Xferd Average Speed Time Time Time Current
download-percent-encoding> Dload Upload Total Spent Left Speed
download-percent-encoding> 100 11583 100 11583 0 0 29404 0 0
download-pest> % Total % Received % Xferd Average Speed Time Time Time Current
download-pest> Dload Upload Total Spent Left Speed
download-pest_derive>
download-pest_derive> trying https://static.crates.io/crates/pest_derive/2.8.6/download
download-pest_derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-pest_derive> Dload Upload Total Spent Left Speed
download-pest_generator> structuredAttrs is enabled
download-pest_generator>
download-pest_generator> trying https://static.crates.io/crates/pest_generator/2.8.6/download
download-pest_generator> % Total % Received % Xferd Average Speed Time Time Time Current
download-pest_generator> Dload Upload Total Spent Left Speed
download-pest_meta> structuredAttrs is enabled
download-pest_meta>
download-pest_meta> trying https://static.crates.io/crates/pest_meta/2.8.6/download
download-pikchr> structuredAttrs is enabled
download-pikchr>
download-pikchr> trying https://static.crates.io/crates/pikchr/0.1.4/download
download-pin-project-lite> structuredAttrs is enabled
download-pin-project-lite>
download-pin-project-lite> trying https://static.crates.io/crates/pin-project-lite/0.2.17/download
download-pkg-config> structuredAttrs is enabled
download-pkg-config>
download-pkg-config> trying https://static.crates.io/crates/pkg-config/0.3.33/download
download-poly1305> structuredAttrs is enabled
building '/nix/store/l7qjbhxzhy8b18rd0aqq9c8pbr8rgsg9-download-potential_utf-0.1.5.drv'...
building '/nix/store/wxi492f2wbwl3rjrjzmk9maj4aq452mj-download-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/p7pycg9zsxw34jp2qn7qk498qj0vzv0l-download-proc-macro-error2-2.0.1.drv'...
building '/nix/store/g0kg19wz13hxrdbfzwk0aa3y8kbx16yl-download-proc-macro2-1.0.106.drv'...
building '/nix/store/s858csqynca2ixqgk3i0v6cw6xvf95fm-download-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/2hwgq1kwjwqj1x5y14kcqxf56fhydrfg-download-pulldown-cmark-0.13.4.drv'...
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
download-pest> 100 127.2k 100 127.2k 0 0 214.6k 0 0
download-pest_derive> 100 44342 100 44342 0 0 93512 0 0
download-pest_generator> 100 43975 100 43975 0 0 91688 0 0
download-pest_meta> % Total % Received % Xferd Average Speed Time Time Time Current
download-pest_meta> Dload Upload Total Spent Left Speed
download-pest_meta> 100 68276 100 68276 0 0 132.8k 0 0
download-pikchr> % Total % Received % Xferd Average Speed Time Time Time Current
download-pikchr> Dload Upload Total Spent Left Speed
download-pikchr> 100 78654 100 78654 0 0 150.6k 0 0
download-pin-project-lite> % Total % Received % Xferd Average Speed Time Time Time Current
download-pin-project-lite> Dload Upload Total Spent Left Speed
download-pin-project-lite> 100 31034 100 31034 0 0 72804 0 0
download-pkg-config> % Total % Received % Xferd Average Speed Time Time Time Current
download-pkg-config> Dload Upload Total Spent Left Speed
download-pkg-config> 100 21590 100 21590 0 0 57141 0 0
download-poly1305>
download-poly1305> trying https://static.crates.io/crates/poly1305/0.8.0/download
download-poly1305> % Total % Received % Xferd Average Speed Time Time Time Current
download-poly1305> Dload Upload Total Spent Left Speed
download-poly1305> 100 32633 100 32633 0 0 82906 0 0
download-polyval> structuredAttrs is enabled
download-polyval>
download-polyval> trying https://static.crates.io/crates/polyval/0.6.2/download
download-polyval> % Total % Received % Xferd Average Speed Time Time Time Current
download-polyval> Dload Upload Total Spent Left Speed
download-polyval> 100 18425 100 18425 0 0 48388 0 0
download-potential_utf> structuredAttrs is enabled
download-potential_utf>
download-potential_utf> trying https://static.crates.io/crates/potential_utf/0.1.5/download
download-proc-macro-error-attr2> structuredAttrs is enabled
download-proc-macro-error-attr2>
download-proc-macro-error-attr2> trying https://static.crates.io/crates/proc-macro-error-attr2/2.0.0/download
download-proc-macro-error2> structuredAttrs is enabled
download-proc-macro-error2>
download-proc-macro-error2> trying https://static.crates.io/crates/proc-macro-error2/2.0.1/download
download-proc-macro2> structuredAttrs is enabled
download-proc-macro2>
download-proc-macro2> trying https://static.crates.io/crates/proc-macro2/1.0.106/download
download-proc-macro2-diagnostics> structuredAttrs is enabled
download-proc-macro2-diagnostics>
download-proc-macro2-diagnostics> trying https://static.crates.io/crates/proc-macro2-diagnostics/0.10.1/download
building '/nix/store/8sdi30hipf9q318nwhrb83zimp9k6yga-download-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/zq9x1k3p6z4v44vx6m9nffrzlad23g7q-download-qcheck-1.0.0.drv'...
building '/nix/store/skdmqy9w1n0yljh7hlgzhl8fq2ld77sp-download-quick-xml-0.39.4.drv'...
building '/nix/store/vrl29ab6z3bmjb1lf7ylzcil3ja6l9vx-download-quote-1.0.46.drv'...
building '/nix/store/h5wdg7hwvm60c063pdnvzhqc9aan9h6m-download-r-efi-5.3.0.drv'...
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
download-potential_utf> % Total % Received % Xferd Average Speed Time Time Time Current
download-potential_utf> Dload Upload Total Spent Left Speed
download-potential_utf> 100 10189 100 10189 0 0 26361 0 0
download-proc-macro-error-attr2> % Total % Received % Xferd Average Speed Time Time Time Current
download-proc-macro-error-attr2> Dload Upload Total Spent Left Speed
download-proc-macro-error-attr2> 100 7745 100 7745 0 0 19902 0 0
download-proc-macro-error2> % Total % Received % Xferd Average Speed Time Time Time Current
download-proc-macro-error2> Dload Upload Total Spent Left Speed
download-proc-macro-error2> 100 24807 100 24807 0 0 62905 0 0
download-proc-macro2> % Total % Received % Xferd Average Speed Time Time Time Current
download-proc-macro2> Dload Upload Total Spent Left Speed
download-proc-macro2-diagnostics> % Total % Received % Xferd Average Speed Time Time Time Current
download-proc-macro2-diagnostics> Dload Upload Total Spent Left Speed
download-proc-macro2-diagnostics> 100 12219 100 12219 0 0 30719 0 0
download-pulldown-cmark> structuredAttrs is enabled
download-pulldown-cmark>
download-pulldown-cmark> trying https://static.crates.io/crates/pulldown-cmark/0.13.4/download
download-pulldown-cmark> % Total % Received % Xferd Average Speed Time Time Time Current
download-pulldown-cmark> Dload Upload Total Spent Left Speed
download-pulldown-cmark-escape> structuredAttrs is enabled
download-pulldown-cmark-escape>
download-pulldown-cmark-escape> trying https://static.crates.io/crates/pulldown-cmark-escape/0.11.0/download
download-qcheck> structuredAttrs is enabled
download-qcheck>
download-qcheck> trying https://static.crates.io/crates/qcheck/1.0.0/download
download-quick-xml> structuredAttrs is enabled
download-quick-xml>
download-quick-xml> trying https://static.crates.io/crates/quick-xml/0.39.4/download
download-quote> structuredAttrs is enabled
download-quote>
download-quote> trying https://static.crates.io/crates/quote/1.0.46/download
building '/nix/store/jgbmigm0s3qp9sbl3jqljx6z6332zz8h-download-r-efi-6.0.0.drv'...
building '/nix/store/j3xx9ax6qm6vbcb5irh8bf2scyw6k1c0-download-radicle-0.22.1.drv'...
building '/nix/store/41i5pqr9mc7gaw4j92j3syxfyv2nffn3-download-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/dz6h8kilgfa64i2z38lrb11iq38g2y9x-download-radicle-cob-0.19.0.drv'...
building '/nix/store/5fyj9akkj3ph4kim8csh8q0x7zxjb1fq-download-radicle-core-0.2.0.drv'...
building '/nix/store/sv8jsnbznd2132iz8awrbcalsq4qlqg6-download-radicle-crypto-0.16.0.drv'...
building '/nix/store/m79ysa3wry9xazl9qwalv7playavyawd-download-radicle-dag-0.10.0.drv'...
building '/nix/store/03ginwvvzm0y7ml489bppx30rlld7pnk-download-radicle-git-ext-0.12.0.drv'...
building '/nix/store/df94ng1cm04nk240hy22maqyisfvzr94-download-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
download-proc-macro2> 100 59765 100 59765 0 0 117.7k 0 0
download-pulldown-cmark> 100 151.4k 100 151.4k 0 0 247.9k 0 0
download-pulldown-cmark-escape> % Total % Received % Xferd Average Speed Time Time Time Current
download-pulldown-cmark-escape> Dload Upload Total Spent Left Speed
download-pulldown-cmark-escape> 100 6719 100 6719 0 0 18671 0 0
download-qcheck> % Total % Received % Xferd Average Speed Time Time Time Current
download-qcheck> Dload Upload Total Spent Left Speed
download-qcheck> 100 21273 100 21273 0 0 55304 0 0
download-quick-xml> % Total % Received % Xferd Average Speed Time Time Time Current
download-quick-xml> Dload Upload Total Spent Left Speed
download-quick-xml> 100 209.1k 100 209.1k 0 0 306.4k 0 0
download-quote> % Total % Received % Xferd Average Speed Time Time Time Current
download-quote> Dload Upload Total Spent Left Speed
download-quote> 100 31628 100 31628 0 0 74870 0 0
download-r-efi> structuredAttrs is enabled
download-r-efi>
download-r-efi> trying https://static.crates.io/crates/r-efi/5.3.0/download
download-r-efi> % Total % Received % Xferd Average Speed Time Time Time Current
download-r-efi> Dload Upload Total Spent Left Speed
download-r-efi> 100 64532 100 64532 0 0 125.4k 0 0
download-r-efi> structuredAttrs is enabled
download-r-efi>
download-r-efi> trying https://static.crates.io/crates/r-efi/6.0.0/download
download-r-efi> % Total % Received % Xferd Average Speed Time Time Time Current
download-r-efi> Dload Upload Total Spent Left Speed
download-radicle> structuredAttrs is enabled
download-radicle>
download-radicle> trying https://static.crates.io/crates/radicle/0.22.1/download
download-radicle> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle> Dload Upload Total Spent Left Speed
download-radicle-ci-broker> structuredAttrs is enabled
download-radicle-ci-broker>
download-radicle-ci-broker> trying https://static.crates.io/crates/radicle-ci-broker/0.29.0/download
download-radicle-cob> structuredAttrs is enabled
download-radicle-cob>
download-radicle-cob> trying https://static.crates.io/crates/radicle-cob/0.19.0/download
download-radicle-core> structuredAttrs is enabled
download-radicle-core>
download-radicle-core> trying https://static.crates.io/crates/radicle-core/0.2.0/download
download-radicle-crypto> structuredAttrs is enabled
download-radicle-crypto>
download-radicle-crypto> trying https://static.crates.io/crates/radicle-crypto/0.16.0/download
download-radicle-dag> structuredAttrs is enabled
download-radicle-dag>
download-radicle-dag> trying https://static.crates.io/crates/radicle-dag/0.10.0/download
download-radicle-git-ext> structuredAttrs is enabled
building '/nix/store/7gq181mk90b6gvdg25f4z9w4dv7b7v90-download-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/j2038iy433fq62ckdri3ymnfpj643l5a-download-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/m3vlfn1rnqr0kzj9akl4wxph02fas392-download-radicle-job-0.5.2.drv'...
building '/nix/store/w79xpk9vpihqgpi4qs9swp39nq7lbz7p-download-radicle-localtime-0.1.0.drv'...
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
download-r-efi> 100 65303 100 65303 0 0 120.4k 0 0
download-radicle-ci-broker> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-ci-broker> Dload Upload Total Spent Left Speed
download-radicle-cob> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-cob> Dload Upload Total Spent Left Speed
download-radicle-cob> 100 38022 100 38022 0 0 94063 0 0
download-radicle-core> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-core> Dload Upload Total Spent Left Speed
download-radicle-core> 100 15819 100 15819 0 0 42184 0 0
download-radicle-crypto> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-crypto> Dload Upload Total Spent Left Speed
download-radicle-crypto> 100 22767 100 22767 0 0 54914 0 0
download-radicle-dag> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-dag> Dload Upload Total Spent Left Speed
download-radicle-dag> 100 5886 100 5886 0 0 16211 0 0
download-radicle-git-ext>
download-radicle-git-ext> trying https://static.crates.io/crates/radicle-git-ext/0.12.0/download
download-radicle-git-ext> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-git-ext> Dload Upload Total Spent Left Speed
download-radicle-git-metadata> structuredAttrs is enabled
download-radicle-git-metadata>
download-radicle-git-metadata> trying https://static.crates.io/crates/radicle-git-metadata/0.1.0/download
download-radicle-git-metadata> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-git-metadata> Dload Upload Total Spent Left Speed
download-radicle-git-metadata> structuredAttrs is enabled
download-radicle-git-metadata>
download-radicle-git-metadata> trying https://static.crates.io/crates/radicle-git-metadata/0.2.0/download
download-radicle-git-ref-format> structuredAttrs is enabled
download-radicle-git-ref-format>
download-radicle-git-ref-format> trying https://static.crates.io/crates/radicle-git-ref-format/0.1.0/download
download-radicle-job> structuredAttrs is enabled
building '/nix/store/gywsyzajavk7ism8anizirlg6n2kzi3w-download-radicle-oid-0.1.0.drv'...
building '/nix/store/jzymy05rclv9h2nm5gyrkj0k82jr3xlg-download-radicle-ssh-0.10.0.drv'...
building '/nix/store/5gv7095f7chr30vkyj1n8w2s4ja5nv57-download-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9kzwcqi781fd7ymc06jsc2ivlgvwpmsc-download-radicle-surf-0.27.1.drv'...
building '/nix/store/ks650mzzs2lqsxswvpchjhsgavbpg001-download-rand-0.8.6.drv'...
building '/nix/store/d257jybg3n899j6cj9q1lvkvv8j8mmi5-download-ref-cast-1.0.25.drv'...
building '/nix/store/968c0d2cmgysaj3siixv5bgkz4i3zzv9-download-ref-cast-impl-1.0.25.drv'...
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
download-radicle> 100 300.9k 100 300.9k 0 0 421.2k 0 0
download-radicle-ci-broker> 100 874.0k 100 874.0k 0 0 954.2k 0 0
download-radicle-git-ext> 100 14926 100 14926 0 0 38332 0 0
download-radicle-git-metadata> 100 6135 100 6135 0 0 16947 0 0
download-radicle-git-metadata> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-git-metadata> Dload Upload Total Spent Left Speed
download-radicle-git-metadata> 100 10908 100 10908 0 0 27437 0 0
download-radicle-git-ref-format> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-git-ref-format> Dload Upload Total Spent Left Speed
download-radicle-git-ref-format> 100 3481 100 3481 0 0 9218 0 0
download-radicle-job>
download-radicle-job> trying https://static.crates.io/crates/radicle-job/0.5.2/download
download-radicle-job> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-job> Dload Upload Total Spent Left Speed
download-radicle-job> 100 33050 100 33050 0 0 78334 0 0
download-radicle-localtime> structuredAttrs is enabled
download-radicle-localtime>
download-radicle-localtime> trying https://static.crates.io/crates/radicle-localtime/0.1.0/download
download-radicle-localtime> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-localtime> Dload Upload Total Spent Left Speed
download-radicle-localtime> 100 4629 100 4629 0 0 12820 0 0
download-radicle-oid> structuredAttrs is enabled
download-radicle-oid>
download-radicle-oid> trying https://static.crates.io/crates/radicle-oid/0.1.0/download
download-radicle-oid> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-oid> Dload Upload Total Spent Left Speed
download-radicle-ssh> structuredAttrs is enabled
download-radicle-ssh>
download-radicle-ssh> trying https://static.crates.io/crates/radicle-ssh/0.10.0/download
download-radicle-std-ext> structuredAttrs is enabled
download-radicle-std-ext>
download-radicle-std-ext> trying https://static.crates.io/crates/radicle-std-ext/0.2.0/download
download-radicle-surf> structuredAttrs is enabled
download-radicle-surf>
download-radicle-surf> trying https://static.crates.io/crates/radicle-surf/0.27.1/download
download-rand> structuredAttrs is enabled
download-rand>
download-rand> trying https://static.crates.io/crates/rand/0.8.6/download
download-ref-cast> structuredAttrs is enabled
building '/nix/store/4k567xz81qs907b7xrqjhhhb669m8yz8-download-regex-1.12.4.drv'...
building '/nix/store/3lmcdml8vxcx0zhx48y0asphva6x3zz3-download-regex-automata-0.4.14.drv'...
building '/nix/store/3wy6h0glg043nac668gpq4z7v2iycjl3-download-regex-syntax-0.8.11.drv'...
building '/nix/store/vz4zkw5dz4xpxsib5g7zixcyqiq9m20q-download-remove_dir_all-1.0.0.drv'...
building '/nix/store/2qxkzhc7izmb306rcpw01qc2w5d1drcq-download-roadmap-0.7.0.drv'...
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
download-radicle-oid> 100 11073 100 11073 0 0 29561 0 0
download-radicle-ssh> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-ssh> Dload Upload Total Spent Left Speed
download-radicle-ssh> 100 12143 100 12143 0 0 33123 0 0
download-radicle-std-ext> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-std-ext> Dload Upload Total Spent Left Speed
download-radicle-std-ext> 100 2439 100 2439 0 0 6757 0 0
download-radicle-surf> % Total % Received % Xferd Average Speed Time Time Time Current
download-radicle-surf> Dload Upload Total Spent Left Speed
download-rand> % Total % Received % Xferd Average Speed Time Time Time Current
download-rand> Dload Upload Total Spent Left Speed
download-ref-cast>
download-ref-cast> trying https://static.crates.io/crates/ref-cast/1.0.25/download
download-ref-cast> % Total % Received % Xferd Average Speed Time Time Time Current
download-ref-cast> Dload Upload Total Spent Left Speed
download-ref-cast> 100 15192 100 15192 0 0 40489 0 0
download-ref-cast-impl> structuredAttrs is enabled
download-ref-cast-impl>
download-ref-cast-impl> trying https://static.crates.io/crates/ref-cast-impl/1.0.25/download
download-ref-cast-impl> % Total % Received % Xferd Average Speed Time Time Time Current
download-ref-cast-impl> Dload Upload Total Spent Left Speed
download-regex> structuredAttrs is enabled
download-regex>
download-regex> trying https://static.crates.io/crates/regex/1.12.4/download
download-regex-automata> structuredAttrs is enabled
download-regex-automata>
download-regex-automata> trying https://static.crates.io/crates/regex-automata/0.4.14/download
download-regex-syntax> structuredAttrs is enabled
download-regex-syntax>
download-regex-syntax> trying https://static.crates.io/crates/regex-syntax/0.8.11/download
download-remove_dir_all> structuredAttrs is enabled
download-remove_dir_all>
download-remove_dir_all> trying https://static.crates.io/crates/remove_dir_all/1.0.0/download
building '/nix/store/3bbidwvp88rym2f22svf586yka9vn7sj-download-rsa-0.9.10.drv'...
building '/nix/store/qg3rk2babdqm2nfcxm31wqqafx5dwzkb-download-rss-2.0.13.drv'...
building '/nix/store/b34sgi5pgvczwgdzag2arrfkl8hxxy6q-download-rust_decimal-1.42.1.drv'...
building '/nix/store/4ilq5sjd2plq0d6ppqmjbqdl2mw0lcxf-download-rustix-1.1.4.drv'...
building '/nix/store/qadza57azxrmnhspwvvx0qlbksiww8sa-download-rustversion-1.0.22.drv'...
building '/nix/store/2vxlgkxvcn6kwq14a18xpsmbymxnwf0j-download-ryu-1.0.23.drv'...
building '/nix/store/2wicm9ywp8pd6xsnv1nsnh1j4dillbdl-download-schemars-1.2.1.drv'...
building '/nix/store/gqr1vr4cgkg9813ixw2lghla37nhbbrw-download-schemars_derive-1.2.1.drv'...
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
download-radicle-surf> 100 142.5k 100 142.5k 0 0 237.1k 0 0
download-rand> 100 83339 100 83339 0 0 158.8k 0 0
download-ref-cast-impl> 100 10167 100 10167 0 0 27836 0 0
download-regex> % Total % Received % Xferd Average Speed Time Time Time Current
download-regex> Dload Upload Total Spent Left Speed
download-regex> 100 149.8k 100 149.8k 0 0 245.8k 0 0
download-regex-automata> % Total % Received % Xferd Average Speed Time Time Time Current
download-regex-automata> Dload Upload Total Spent Left Speed
download-regex-syntax> % Total % Received % Xferd Average Speed Time Time Time Current
download-regex-syntax> Dload Upload Total Spent Left Speed
download-remove_dir_all> % Total % Received % Xferd Average Speed Time Time Time Current
download-remove_dir_all> Dload Upload Total Spent Left Speed
download-remove_dir_all> 100 20461 100 20461 0 0 53181 0 0
download-roadmap> structuredAttrs is enabled
download-roadmap>
download-roadmap> trying https://static.crates.io/crates/roadmap/0.7.0/download
download-roadmap> % Total % Received % Xferd Average Speed Time Time Time Current
download-roadmap> Dload Upload Total Spent Left Speed
download-roadmap> 100 12738 100 12738 0 0 34467 0 0
download-rsa> structuredAttrs is enabled
download-rsa>
download-rsa> trying https://static.crates.io/crates/rsa/0.9.10/download
download-rsa> % Total % Received % Xferd Average Speed Time Time Time Current
download-rsa> Dload Upload Total Spent Left Speed
download-rss> structuredAttrs is enabled
download-rss>
download-rss> trying https://static.crates.io/crates/rss/2.0.13/download
download-rust_decimal> structuredAttrs is enabled
download-rust_decimal>
download-rust_decimal> trying https://static.crates.io/crates/rust_decimal/1.42.1/download
download-rustix> structuredAttrs is enabled
download-rustix>
download-rustix> trying https://static.crates.io/crates/rustix/1.1.4/download
download-rustversion> structuredAttrs is enabled
download-rustversion>
download-rustversion> trying https://static.crates.io/crates/rustversion/1.0.22/download
download-ryu> structuredAttrs is enabled
download-ryu>
download-ryu> trying https://static.crates.io/crates/ryu/1.0.23/download
download-schemars> structuredAttrs is enabled
download-schemars>
download-schemars> trying https://static.crates.io/crates/schemars/1.2.1/download
building '/nix/store/418giyzjyzrmsfc92rz6a8l35380x82h-download-scoped-tls-1.0.1.drv'...
building '/nix/store/gq33w0rp9zgrkkrhwxp5vixm1jn19rrq-download-serde-1.0.228.drv'...
building '/nix/store/x01yx2mbpdzmv6bb29f46ns18dikpmyy-download-serde-untagged-0.1.9.drv'...
building '/nix/store/rispz0gq8mspmd8hxnvd0w90prvs45vd-download-serde_core-1.0.228.drv'...
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
download-regex-automata> 100 603.5k 100 603.5k 0 0 768.6k 0 0
download-regex-syntax> 100 350.6k 100 350.6k 0 0 430.1k 0 0
download-rsa> 100 86417 100 86417 0 0 162.4k 0 0
download-rss> % Total % Received % Xferd Average Speed Time Time Time Current
download-rss> Dload Upload Total Spent Left Speed
download-rss> 100 60400 100 60400 0 0 119.6k 0 0
download-rust_decimal> % Total % Received % Xferd Average Speed Time Time Time Current
download-rust_decimal> Dload Upload Total Spent Left Speed
download-rustix> % Total % Received % Xferd Average Speed Time Time Time Current
download-rustix> Dload Upload Total Spent Left Speed
download-rustversion> % Total % Received % Xferd Average Speed Time Time Time Current
download-rustversion> Dload Upload Total Spent Left Speed
download-ryu> % Total % Received % Xferd Average Speed Time Time Time Current
download-ryu> Dload Upload Total Spent Left Speed
download-schemars> % Total % Received % Xferd Average Speed Time Time Time Current
download-schemars> Dload Upload Total Spent Left Speed
download-schemars_derive> structuredAttrs is enabled
download-schemars_derive>
download-schemars_derive> trying https://static.crates.io/crates/schemars_derive/1.2.1/download
download-schemars_derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-schemars_derive> Dload Upload Total Spent Left Speed
download-scoped-tls> structuredAttrs is enabled
download-scoped-tls>
download-scoped-tls> trying https://static.crates.io/crates/scoped-tls/1.0.1/download
download-serde> structuredAttrs is enabled
download-serde>
download-serde> trying https://static.crates.io/crates/serde/1.0.228/download
download-serde-untagged> structuredAttrs is enabled
building '/nix/store/k0a7lw5v51rk83y1wngwziw78sfy75qw-download-serde_derive-1.0.228.drv'...
building '/nix/store/0gzmqnbh2c8ja4nz9h4zpx4ycaphsrrd-download-serde_derive_internals-0.29.1.drv'...
building '/nix/store/aqwr1yjy3kqgkd8bl95a1wy6di48zr26-download-serde_json-1.0.150.drv'...
building '/nix/store/kp7cds788lg3dlblccbz1rd5dmh8vilg-download-serde_norway-0.9.42.drv'...
building '/nix/store/5f4ffh5j5cqydibzlkj07grmapskafbs-download-serde_path_to_error-0.1.20.drv'...
building '/nix/store/qvbapb59l4id1dpz3mjzagvv629mnmhz-download-serde_spanned-0.6.9.drv'...
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
download-rust_decimal> 100 162.3k 100 162.3k 0 0 264.1k 0 0
download-rustix> 100 415.2k 100 415.2k 0 0 476.2k 0 0
download-rustversion> 100 21096 100 21096 0 0 47981 0 0
download-ryu> 100 52823 100 52823 0 0 106.0k 0 0
download-schemars> 100 94403 100 94403 0 0 176.0k 0 0
download-schemars_derive> 100 31319 100 31319 0 0 78837 0 0
download-scoped-tls> % Total % Received % Xferd Average Speed Time Time Time Current
download-scoped-tls> Dload Upload Total Spent Left Speed
download-scoped-tls> 100 8202 100 8202 0 0 21117 0 0
download-serde> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde> Dload Upload Total Spent Left Speed
download-serde> 100 83652 100 83652 0 0 157.8k 0 0
download-serde-untagged>
download-serde-untagged> trying https://static.crates.io/crates/serde-untagged/0.1.9/download
download-serde-untagged> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde-untagged> Dload Upload Total Spent Left Speed
download-serde-untagged> 100 17718 100 17718 0 0 46841 0 0
download-serde_core> structuredAttrs is enabled
download-serde_core>
download-serde_core> trying https://static.crates.io/crates/serde_core/1.0.228/download
download-serde_core> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde_core> Dload Upload Total Spent Left Speed
download-serde_derive> structuredAttrs is enabled
download-serde_derive>
download-serde_derive> trying https://static.crates.io/crates/serde_derive/1.0.228/download
download-serde_derive_internals> structuredAttrs is enabled
download-serde_derive_internals>
download-serde_derive_internals> trying https://static.crates.io/crates/serde_derive_internals/0.29.1/download
download-serde_json> structuredAttrs is enabled
download-serde_json>
download-serde_json> trying https://static.crates.io/crates/serde_json/1.0.150/download
download-serde_norway> structuredAttrs is enabled
download-serde_norway>
download-serde_norway> trying https://static.crates.io/crates/serde_norway/0.9.42/download
download-serde_path_to_error> structuredAttrs is enabled
download-serde_path_to_error>
download-serde_path_to_error> trying https://static.crates.io/crates/serde_path_to_error/0.1.20/download
building '/nix/store/rkir2fnhvk0d9syd8lswv2j585rhvfjh-download-sha2-0.10.9.drv'...
building '/nix/store/kihh6yxnpigk4f4mrdbkbk414wg34ajz-download-sha3-0.10.9.drv'...
building '/nix/store/0w9jlcxaf4k97fzjag0yh9b6nv3r4gpw-download-shell-words-1.1.1.drv'...
building '/nix/store/kklgxff8yyyr8shkfkqd0mz1050naipv-download-shlex-2.0.1.drv'...
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
download-serde_core> 100 63111 100 63111 0 0 122.6k 0 0
download-serde_derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde_derive> Dload Upload Total Spent Left Speed
download-serde_derive> 100 59605 100 59605 0 0 110.8k 0 0
download-serde_derive_internals> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde_derive_internals> Dload Upload Total Spent Left Speed
download-serde_derive_internals> 100 26189 100 26189 0 0 62872 0 0
download-serde_json> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde_json> Dload Upload Total Spent Left Speed
download-serde_norway> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde_norway> Dload Upload Total Spent Left Speed
download-serde_path_to_error> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde_path_to_error> Dload Upload Total Spent Left Speed
download-serde_spanned> structuredAttrs is enabled
download-serde_spanned>
download-serde_spanned> trying https://static.crates.io/crates/serde_spanned/0.6.9/download
download-serde_spanned> % Total % Received % Xferd Average Speed Time Time Time Current
download-serde_spanned> Dload Upload Total Spent Left Speed
download-sha2> structuredAttrs is enabled
download-sha2>
download-sha2> trying https://static.crates.io/crates/sha2/0.10.9/download
download-sha3> structuredAttrs is enabled
download-sha3>
download-sha3> trying https://static.crates.io/crates/sha3/0.10.9/download
download-shell-words> structuredAttrs is enabled
download-shell-words>
download-shell-words> trying https://static.crates.io/crates/shell-words/1.1.1/download
building '/nix/store/zbz0b2qp2lhvbvmy8jnlidwy5kd700rm-download-simd-adler32-0.3.9.drv'...
building '/nix/store/7hdjjhc5z38hq0jph3whnzmwr17c2b66-download-siphasher-1.0.3.drv'...
building '/nix/store/d2vbi2kmd4wgpzm4q7lk9p1g4phy0cax-download-slab-0.4.12.drv'...
building '/nix/store/18ad450gy9pl515q1v3kjrjbv3y3sq60-download-slug-0.1.6.drv'...
building '/nix/store/fjzpm3wvqgvjhpxll5hlspsixr7ix57l-download-smallvec-1.15.2.drv'...
building '/nix/store/y315r5vcb2apzv0p8qy1ryp04aza3sp9-download-smawk-0.3.3.drv'...
building '/nix/store/v7n08bl86icx57n2564l257a4mvvrf7k-download-socks5-client-0.4.3.drv'...
building '/nix/store/62nzn1a6y8ajk874glwfail0varpf63z-download-sqlite-0.37.0.drv'...
building '/nix/store/ydlmi7hfxdgcbl5zhlimzgjgqg069b3n-download-sqlite3-src-0.7.0.drv'...
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
download-serde_json> 100 151.9k 100 151.9k 0 0 233.9k 0 0
download-serde_norway> 100 68918 100 68918 0 0 132.7k 0 0
download-serde_path_to_error> 100 18046 100 18046 0 0 47337 0 0
download-serde_spanned> 100 10210 100 10210 0 0 24964 0 0
download-sha2> % Total % Received % Xferd Average Speed Time Time Time Current
download-sha2> Dload Upload Total Spent Left Speed
download-sha2> 100 29271 100 29271 0 0 74550 0 0
download-sha3> % Total % Received % Xferd Average Speed Time Time Time Current
download-sha3> Dload Upload Total Spent Left Speed
download-shell-words> % Total % Received % Xferd Average Speed Time Time Time Current
download-shell-words> Dload Upload Total Spent Left Speed
download-shell-words> 100 10012 100 10012 0 0 25940 0 0
download-shlex> structuredAttrs is enabled
download-shlex>
download-shlex> trying https://static.crates.io/crates/shlex/2.0.1/download
download-shlex> % Total % Received % Xferd Average Speed Time Time Time Current
download-shlex> Dload Upload Total Spent Left Speed
download-shlex> 100 19332 100 19332 0 0 50531 0 0
download-simd-adler32> structuredAttrs is enabled
download-simd-adler32>
download-simd-adler32> trying https://static.crates.io/crates/simd-adler32/0.3.9/download
download-simd-adler32> % Total % Received % Xferd Average Speed Time Time Time Current
download-simd-adler32> Dload Upload Total Spent Left Speed
download-siphasher> structuredAttrs is enabled
download-siphasher>
download-siphasher> trying https://static.crates.io/crates/siphasher/1.0.3/download
download-siphasher> % Total % Received % Xferd Average Speed Time Time Time Current
download-siphasher> Dload Upload Total Spent Left Speed
download-slab> structuredAttrs is enabled
download-slab>
download-slab> trying https://static.crates.io/crates/slab/0.4.12/download
download-slug> structuredAttrs is enabled
download-slug>
download-slug> trying https://static.crates.io/crates/slug/0.1.6/download
download-smallvec> structuredAttrs is enabled
download-smallvec>
download-smallvec> trying https://static.crates.io/crates/smallvec/1.15.2/download
download-smawk> structuredAttrs is enabled
download-smawk>
download-smawk> trying https://static.crates.io/crates/smawk/0.3.3/download
download-socks5-client> structuredAttrs is enabled
download-socks5-client>
download-socks5-client> trying https://static.crates.io/crates/socks5-client/0.4.3/download
download-sqlite> structuredAttrs is enabled
building '/nix/store/zkypjwj9p2z27p3ann5dw5d40w6kpid3-download-sqlite3-sys-0.18.0.drv'...
building '/nix/store/nwrh2097gvgkchlq2x2nnyvw01sqbq63-download-ssh-cipher-0.2.0.drv'...
building '/nix/store/154b9c73xb2kyh3fpg3cv6q6lw49wqlp-download-ssh-encoding-0.2.0.drv'...
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
download-sha3> 100 839.7k 100 839.7k 0 0 919.7k 0 0
download-simd-adler32> 100 18572 100 18572 0 0 49114 0 0
download-siphasher> 100 11643 100 11643 0 0 29255 0 0
download-slab> % Total % Received % Xferd Average Speed Time Time Time Current
download-slab> Dload Upload Total Spent Left Speed
download-slab> 100 19080 100 19080 0 0 50143 0 0
download-slug> % Total % Received % Xferd Average Speed Time Time Time Current
download-slug> Dload Upload Total Spent Left Speed
download-slug> 100 6787 100 6787 0 0 18699 0 0
download-smallvec> % Total % Received % Xferd Average Speed Time Time Time Current
download-smallvec> Dload Upload Total Spent Left Speed
download-smawk> % Total % Received % Xferd Average Speed Time Time Time Current
download-smawk> Dload Upload Total Spent Left Speed
download-socks5-client> % Total % Received % Xferd Average Speed Time Time Time Current
download-socks5-client> Dload Upload Total Spent Left Speed
download-sqlite>
download-sqlite> trying https://static.crates.io/crates/sqlite/0.37.0/download
download-sqlite> % Total % Received % Xferd Average Speed Time Time Time Current
download-sqlite> Dload Upload Total Spent Left Speed
download-sqlite3-src> structuredAttrs is enabled
download-sqlite3-src>
download-sqlite3-src> trying https://static.crates.io/crates/sqlite3-src/0.7.0/download
download-sqlite3-sys> structuredAttrs is enabled
download-sqlite3-sys>
download-sqlite3-sys> trying https://static.crates.io/crates/sqlite3-sys/0.18.0/download
download-ssh-cipher> structuredAttrs is enabled
building '/nix/store/cyxmbjfljlfif9qhjignd99ndhqcmgyf-download-ssh-key-0.6.7.drv'...
building '/nix/store/6milcjk6h4l03iwmy79kzi2ac8vgzxgc-download-stable_deref_trait-1.2.1.drv'...
building '/nix/store/xgdfp4r4ybh3jd5qc20hy3sdgfdiyn8j-download-state-0.6.0.drv'...
building '/nix/store/dhx4z73nxd4fqsn6yzwwc9bcfq156zmz-download-subplot-0.14.0.drv'...
building '/nix/store/vhxdcks9j39k12fhhg9p3ixxd5lqxayp-download-subplotlib-0.14.0.drv'...
building '/nix/store/nw4wms7a14avg1igj4flbgvkxnk9mymx-download-subplotlib-derive-0.14.0.drv'...
building '/nix/store/sk78mwfak1v2wdbcp3l1095m9s7qasni-download-syn-2.0.118.drv'...
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
download-smallvec> 100 34899 100 34899 0 0 80756 0 0
download-smawk> 100 30133 100 30133 0 0 71593 0 0
download-socks5-client> 100 7964 100 7964 0 0 21690 0 0
download-sqlite> 100 19995 100 19995 0 0 52426 0 0
download-sqlite3-src> % Total % Received % Xferd Average Speed Time Time Time Current
download-sqlite3-src> Dload Upload Total Spent Left Speed
download-sqlite3-sys> % Total % Received % Xferd Average Speed Time Time Time Current
download-sqlite3-sys> Dload Upload Total Spent Left Speed
download-sqlite3-sys> 100 19909 100 19909 0 0 52448 0 0
download-ssh-cipher>
download-ssh-cipher> trying https://static.crates.io/crates/ssh-cipher/0.2.0/download
download-ssh-cipher> % Total % Received % Xferd Average Speed Time Time Time Current
download-ssh-cipher> Dload Upload Total Spent Left Speed
download-ssh-cipher> 100 10843 100 10843 0 0 27503 0 0
download-ssh-encoding> structuredAttrs is enabled
download-ssh-encoding>
download-ssh-encoding> trying https://static.crates.io/crates/ssh-encoding/0.2.0/download
download-ssh-encoding> % Total % Received % Xferd Average Speed Time Time Time Current
download-ssh-encoding> Dload Upload Total Spent Left Speed
download-ssh-encoding> 100 13600 100 13600 0 0 36562 0 0
download-ssh-key> structuredAttrs is enabled
download-ssh-key>
download-ssh-key> trying https://static.crates.io/crates/ssh-key/0.6.7/download
download-stable_deref_trait> structuredAttrs is enabled
download-stable_deref_trait>
download-stable_deref_trait> trying https://static.crates.io/crates/stable_deref_trait/1.2.1/download
download-state> structuredAttrs is enabled
download-state>
download-state> trying https://static.crates.io/crates/state/0.6.0/download
download-subplot> structuredAttrs is enabled
download-subplot>
download-subplot> trying https://static.crates.io/crates/subplot/0.14.0/download
download-subplotlib> structuredAttrs is enabled
download-subplotlib>
download-subplotlib> trying https://static.crates.io/crates/subplotlib/0.14.0/download
download-subplotlib-derive> structuredAttrs is enabled
download-subplotlib-derive>
download-subplotlib-derive> trying https://static.crates.io/crates/subplotlib-derive/0.14.0/download
building '/nix/store/ms22c1nnqqv8wl214qs49kcii42b6wkz-download-sync-ptr-0.1.4.drv'...
building '/nix/store/y6pjv3ysirnxhlf8g20r8lj597f91dvv-download-synstructure-0.13.2.drv'...
building '/nix/store/dcai5d1pdjmqw2zskqjl5hp7hsfn1gfs-download-tar-0.4.46.drv'...
building '/nix/store/gc6yxa6jxxwd2imklc6ylnm23y8ddflh-download-tempfile-3.27.0.drv'...
building '/nix/store/6bnkh4p9wladr9xl81j3p4kawj4zvr2z-download-tera-1.20.1.drv'...
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
download-sqlite3-src> 100 2.67M 100 2.67M 0 0 2.22M 0 00:01 00:01 0
download-ssh-key> % Total % Received % Xferd Average Speed Time Time Time Current
download-ssh-key> Dload Upload Total Spent Left Speed
download-ssh-key> 100 110.2k 100 110.2k 0 0 205.6k 0 0
download-stable_deref_trait> % Total % Received % Xferd Average Speed Time Time Time Current
download-stable_deref_trait> Dload Upload Total Spent Left Speed
download-stable_deref_trait> 100 8186 100 8186 0 0 21100 0 0
download-state> % Total % Received % Xferd Average Speed Time Time Time Current
download-state> Dload Upload Total Spent Left Speed
download-state> 100 30182 100 30182 0 0 71676 0 0
download-subplot> % Total % Received % Xferd Average Speed Time Time Time Current
download-subplot> Dload Upload Total Spent Left Speed
download-subplotlib> % Total % Received % Xferd Average Speed Time Time Time Current
download-subplotlib> Dload Upload Total Spent Left Speed
download-subplotlib> 100 36667 100 36667 0 0 89361 0 0
download-subplotlib-derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-subplotlib-derive> Dload Upload Total Spent Left Speed
download-subplotlib-derive> 100 14236 100 14236 0 0 35843 0 0
download-syn> structuredAttrs is enabled
download-syn>
download-syn> trying https://static.crates.io/crates/syn/2.0.118/download
download-syn> % Total % Received % Xferd Average Speed Time Time Time Current
download-syn> Dload Upload Total Spent Left Speed
download-sync-ptr> structuredAttrs is enabled
download-sync-ptr>
download-sync-ptr> trying https://static.crates.io/crates/sync-ptr/0.1.4/download
download-synstructure> structuredAttrs is enabled
download-synstructure>
download-synstructure> trying https://static.crates.io/crates/synstructure/0.13.2/download
download-tar> structuredAttrs is enabled
download-tar>
download-tar> trying https://static.crates.io/crates/tar/0.4.46/download
download-tempfile> structuredAttrs is enabled
building '/nix/store/b4lhpm08mwvi7rkhn24g42ppkx48mh6b-download-terminal_size-0.4.4.drv'...
building '/nix/store/vmdfynpba7dsv70k17laq558nicv8qiq-download-textwrap-0.16.2.drv'...
building '/nix/store/knf2awph2is3v1vdak6byiy3fngjb3s4-download-thiserror-2.0.18.drv'...
building '/nix/store/38mxvxz1gwymnjfzj7ihssm6jcmiwyr2-download-thiserror-impl-2.0.18.drv'...
building '/nix/store/d6a6iciw4jky1i3zfjbldfdj4s74dz9w-download-thread_local-1.1.9.drv'...
building '/nix/store/cmmar3ljsqy3dfkyihj5rhnipi8f3lfq-download-time-0.3.53.drv'...
building '/nix/store/wcwhpm27p3b6g4vd12a0lsixbaammlnp-download-time-core-0.1.9.drv'...
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
download-subplot> 100 137.3k 100 137.3k 0 0 216.1k 0 0
download-syn> 100 298.3k 100 298.3k 0 0 422.2k 0 0
download-sync-ptr> % Total % Received % Xferd Average Speed Time Time Time Current
download-sync-ptr> Dload Upload Total Spent Left Speed
download-sync-ptr> 100 6179 100 6179 0 0 14925 0 0
download-synstructure> % Total % Received % Xferd Average Speed Time Time Time Current
download-synstructure> Dload Upload Total Spent Left Speed
download-synstructure> 100 18950 100 18950 0 0 49837 0 0
download-tar> % Total % Received % Xferd Average Speed Time Time Time Current
download-tar> Dload Upload Total Spent Left Speed
download-tar> 100 70809 100 70809 0 0 136.5k 0 0
download-tempfile>
download-tempfile> trying https://static.crates.io/crates/tempfile/3.27.0/download
download-tempfile> % Total % Received % Xferd Average Speed Time Time Time Current
download-tempfile> Dload Upload Total Spent Left Speed
download-tempfile> 100 44780 100 44780 0 0 82774 0 0
download-tera> structuredAttrs is enabled
download-tera>
download-tera> trying https://static.crates.io/crates/tera/1.20.1/download
download-tera> % Total % Received % Xferd Average Speed Time Time Time Current
download-tera> Dload Upload Total Spent Left Speed
download-terminal_size> structuredAttrs is enabled
download-terminal_size>
download-terminal_size> trying https://static.crates.io/crates/terminal_size/0.4.4/download
download-textwrap> structuredAttrs is enabled
download-textwrap>
download-textwrap> trying https://static.crates.io/crates/textwrap/0.16.2/download
download-thiserror> structuredAttrs is enabled
download-thiserror>
download-thiserror> trying https://static.crates.io/crates/thiserror/2.0.18/download
download-thiserror-impl> structuredAttrs is enabled
download-thiserror-impl>
download-thiserror-impl> trying https://static.crates.io/crates/thiserror-impl/2.0.18/download
download-thread_local> structuredAttrs is enabled
download-thread_local>
download-thread_local> trying https://static.crates.io/crates/thread_local/1.1.9/download
download-time> structuredAttrs is enabled
building '/nix/store/sd2dg8d3vpa26qcaalmxpy8fl1s93g3a-download-time-macros-0.2.31.drv'...
building '/nix/store/v7rq30c8nic364krq7xhk3808iwxs60h-download-tinystr-0.8.3.drv'...
building '/nix/store/20saxlnc31yrmcd13366sq7nffqniv77-download-tinyvec-1.11.0.drv'...
building '/nix/store/dc9x313vp0nwc7f5qpnkbbysi0v9gah5-download-toml-0.8.23.drv'...
building '/nix/store/bf4fq5k40f75drq5d9gmg0dv11j6x7ic-download-toml_datetime-0.6.11.drv'...
building '/nix/store/ny3hixby8dv8shz8f84l1psgq0lsynkn-download-toml_edit-0.22.27.drv'...
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
download-tera> 100 102.3k 100 102.3k 0 0 177.5k 0 0
download-terminal_size> % Total % Received % Xferd Average Speed Time Time Time Current
download-terminal_size> Dload Upload Total Spent Left Speed
download-terminal_size> 100 10022 100 10022 0 0 27557 0 0
download-textwrap> % Total % Received % Xferd Average Speed Time Time Time Current
download-textwrap> Dload Upload Total Spent Left Speed
download-textwrap> 100 57077 100 57077 0 0 113.8k 0 0
download-thiserror> % Total % Received % Xferd Average Speed Time Time Time Current
download-thiserror> Dload Upload Total Spent Left Speed
download-thiserror> 100 28875 100 28875 0 0 68490 0 0
download-thiserror-impl> % Total % Received % Xferd Average Speed Time Time Time Current
download-thiserror-impl> Dload Upload Total Spent Left Speed
download-thiserror-impl> 100 21413 100 21413 0 0 55926 0 0
download-thread_local> % Total % Received % Xferd Average Speed Time Time Time Current
download-thread_local> Dload Upload Total Spent Left Speed
download-thread_local> 100 19315 100 19315 0 0 44764 0 0
download-time>
download-time> trying https://static.crates.io/crates/time/0.3.53/download
download-time> % Total % Received % Xferd Average Speed Time Time Time Current
download-time> Dload Upload Total Spent Left Speed
download-time-core> structuredAttrs is enabled
download-time-core>
download-time-core> trying https://static.crates.io/crates/time-core/0.1.9/download
download-time-core> % Total % Received % Xferd Average Speed Time Time Time Current
download-time-core> Dload Upload Total Spent Left Speed
download-time-core> 100 10320 100 10320 0 0 27721 0 0
download-time-macros> structuredAttrs is enabled
download-time-macros>
download-time-macros> trying https://static.crates.io/crates/time-macros/0.2.31/download
download-tinystr> structuredAttrs is enabled
download-tinystr>
download-tinystr> trying https://static.crates.io/crates/tinystr/0.8.3/download
download-tinyvec> structuredAttrs is enabled
download-tinyvec>
download-tinyvec> trying https://static.crates.io/crates/tinyvec/1.11.0/download
download-toml> structuredAttrs is enabled
download-toml>
download-toml> trying https://static.crates.io/crates/toml/0.8.23/download
download-toml_datetime> structuredAttrs is enabled
building '/nix/store/r0msfvaylwfpv395395spsj9yfhxqi25-download-toml_write-0.1.2.drv'...
building '/nix/store/x1wcjbwhvmvn3qj3nycvib0kwdsp5ric-download-tracing-0.1.44.drv'...
building '/nix/store/kxg9pbpnppxxkksc4ki50sb81kxyjv17-download-tracing-attributes-0.1.31.drv'...
building '/nix/store/m50wxfyjcqch7zsiid4dqcpziklhfjd9-download-tracing-core-0.1.36.drv'...
building '/nix/store/b0qvjiy3ix6a5nn6s5r82plhzn0dlqhm-download-tracing-subscriber-0.3.23.drv'...
building '/nix/store/x68x1naz8lfgkg8gg4zqj8z9rhn70pjs-download-typeid-1.0.3.drv'...
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
download-time> 100 267.0k 100 267.0k 0 0 399.4k 0 0
download-time-macros> % Total % Received % Xferd Average Speed Time Time Time Current
download-time-macros> Dload Upload Total Spent Left Speed
download-time-macros> 100 33491 100 33491 0 0 79025 0 0
download-tinystr> % Total % Received % Xferd Average Speed Time Time Time Current
download-tinystr> Dload Upload Total Spent Left Speed
download-tinystr> 100 24710 100 24710 0 0 60041 0 0
download-tinyvec> % Total % Received % Xferd Average Speed Time Time Time Current
download-tinyvec> Dload Upload Total Spent Left Speed
download-tinyvec> 100 53096 100 53096 0 0 105.4k 0 0
download-toml> % Total % Received % Xferd Average Speed Time Time Time Current
download-toml> Dload Upload Total Spent Left Speed
download-toml> 100 36050 100 36050 0 0 79414 0 0
download-toml_datetime>
download-toml_datetime> trying https://static.crates.io/crates/toml_datetime/0.6.11/download
download-toml_datetime> % Total % Received % Xferd Average Speed Time Time Time Current
download-toml_datetime> Dload Upload Total Spent Left Speed
download-toml_datetime> 100 16125 100 16125 0 0 43009 0 0
download-toml_edit> structuredAttrs is enabled
download-toml_edit>
download-toml_edit> trying https://static.crates.io/crates/toml_edit/0.22.27/download
download-toml_edit> % Total % Received % Xferd Average Speed Time Time Time Current
download-toml_edit> Dload Upload Total Spent Left Speed
download-toml_write> structuredAttrs is enabled
download-toml_write>
download-toml_write> trying https://static.crates.io/crates/toml_write/0.1.2/download
download-tracing> structuredAttrs is enabled
download-tracing>
download-tracing> trying https://static.crates.io/crates/tracing/0.1.44/download
download-tracing-attributes> structuredAttrs is enabled
download-tracing-attributes>
download-tracing-attributes> trying https://static.crates.io/crates/tracing-attributes/0.1.31/download
download-tracing-core> structuredAttrs is enabled
download-tracing-core>
download-tracing-core> trying https://static.crates.io/crates/tracing-core/0.1.36/download
download-tracing-subscriber> structuredAttrs is enabled
download-tracing-subscriber>
download-tracing-subscriber> trying https://static.crates.io/crates/tracing-subscriber/0.3.23/download
building '/nix/store/9s8gc0yabgxfnd7kmmjg9666q4i3bkiw-download-typenum-1.20.1.drv'...
building '/nix/store/4xfn7nwp8bw7ks03pk9myz2jckg621rb-download-uds_windows-1.2.1.drv'...
building '/nix/store/gxsn93ilmn70bg6x4416svlh03bq0kl7-download-uncased-0.9.10.drv'...
building '/nix/store/r2rxxmdw71kd0jvd1w2kix74nhllb0h8-download-unicase-2.9.0.drv'...
building '/nix/store/0dyp6ap3b1hxij1x8q9winypxlrm5sic-download-unicode-ident-1.0.24.drv'...
building '/nix/store/rvs3jdvmfm51l08w7a7mfyrb9722brzl-download-unicode-linebreak-0.1.5.drv'...
building '/nix/store/3qgdm6ivxjxpyrbdyy7ayphchhg91ymi-download-unicode-normalization-0.1.25.drv'...
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
download-toml_edit> 100 78602 100 78602 0 0 131.8k 0 0
download-toml_write> % Total % Received % Xferd Average Speed Time Time Time Current
download-toml_write> Dload Upload Total Spent Left Speed
download-toml_write> 100 15660 100 15660 0 0 42092 0 0
download-tracing> % Total % Received % Xferd Average Speed Time Time Time Current
download-tracing> Dload Upload Total Spent Left Speed
download-tracing-attributes> % Total % Received % Xferd Average Speed Time Time Time Current
download-tracing-attributes> Dload Upload Total Spent Left Speed
download-tracing-attributes> 100 39733 100 39733 0 0 96965 0 0
download-tracing-core> % Total % Received % Xferd Average Speed Time Time Time Current
download-tracing-core> Dload Upload Total Spent Left Speed
download-tracing-core> 100 63967 100 63967 0 0 124.6k 0 0
download-tracing-subscriber> % Total % Received % Xferd Average Speed Time Time Time Current
download-tracing-subscriber> Dload Upload Total Spent Left Speed
download-typeid> structuredAttrs is enabled
download-typeid>
download-typeid> trying https://static.crates.io/crates/typeid/1.0.3/download
download-typeid> % Total % Received % Xferd Average Speed Time Time Time Current
download-typeid> Dload Upload Total Spent Left Speed
download-typeid> 100 9006 100 9006 0 0 21966 0 0
download-typenum> structuredAttrs is enabled
download-typenum>
download-typenum> trying https://static.crates.io/crates/typenum/1.20.1/download
download-uds_windows> structuredAttrs is enabled
download-uds_windows>
download-uds_windows> trying https://static.crates.io/crates/uds_windows/1.2.1/download
download-uncased> structuredAttrs is enabled
download-uncased>
download-uncased> trying https://static.crates.io/crates/uncased/0.9.10/download
download-unicase> structuredAttrs is enabled
download-unicase>
download-unicase> trying https://static.crates.io/crates/unicase/2.9.0/download
download-unicode-ident> structuredAttrs is enabled
download-unicode-ident>
download-unicode-ident> trying https://static.crates.io/crates/unicode-ident/1.0.24/download
download-unicode-linebreak> structuredAttrs is enabled
building '/nix/store/k0iyilhpzvp4x61h8v51y8m8qh1s7hn9-download-unicode-segmentation-1.13.3.drv'...
building '/nix/store/sjik6rwi25pdyj18fxsk3kjx5i0sqwxk-download-unicode-width-0.2.2.drv'...
building '/nix/store/3khd2gsdlw6a11whrqpkq1442407mmy0-download-universal-hash-0.5.1.drv'...
building '/nix/store/4jq4psdakpqsl04jw42xz3845xdg0xjx-download-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/88rvnkclw95jyrlv0x12dmgxi6g9kdf6-download-url-2.5.8.drv'...
building '/nix/store/ppjg52lnnlqqnacqdiz1705y9pkg6zpi-download-utf8-width-0.1.8.drv'...
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
download-tracing> 100 452.2k 100 452.2k 0 0 598.3k 0 0
download-tracing-subscriber> 100 208.7k 100 208.7k 0 0 329.7k 0 0
download-typenum> % Total % Received % Xferd Average Speed Time Time Time Current
download-typenum> Dload Upload Total Spent Left Speed
download-typenum> 100 103.0k 100 103.0k 0 0 180.6k 0 0
download-uds_windows> % Total % Received % Xferd Average Speed Time Time Time Current
download-uds_windows> Dload Upload Total Spent Left Speed
download-uds_windows> 100 21931 100 21931 0 0 57626 0 0
download-uncased> % Total % Received % Xferd Average Speed Time Time Time Current
download-uncased> Dload Upload Total Spent Left Speed
download-uncased> 100 10872 100 10872 0 0 29346 0 0
download-unicase> % Total % Received % Xferd Average Speed Time Time Time Current
download-unicase> Dload Upload Total Spent Left Speed
download-unicase> 100 24368 100 24368 0 0 63301 0 0
download-unicode-ident> % Total % Received % Xferd Average Speed Time Time Time Current
download-unicode-ident> Dload Upload Total Spent Left Speed
download-unicode-linebreak>
download-unicode-linebreak> trying https://static.crates.io/crates/unicode-linebreak/0.1.5/download
download-unicode-linebreak> % Total % Received % Xferd Average Speed Time Time Time Current
download-unicode-linebreak> Dload Upload Total Spent Left Speed
download-unicode-linebreak> 100 15324 100 15324 0 0 41191 0 0
download-unicode-normalization> structuredAttrs is enabled
download-unicode-normalization>
download-unicode-normalization> trying https://static.crates.io/crates/unicode-normalization/0.1.25/download
download-unicode-normalization> % Total % Received % Xferd Average Speed Time Time Time Current
download-unicode-normalization> Dload Upload Total Spent Left Speed
download-unicode-segmentation> structuredAttrs is enabled
download-unicode-segmentation>
download-unicode-segmentation> trying https://static.crates.io/crates/unicode-segmentation/1.13.3/download
download-unicode-width> structuredAttrs is enabled
download-unicode-width>
download-unicode-width> trying https://static.crates.io/crates/unicode-width/0.2.2/download
download-universal-hash> structuredAttrs is enabled
download-universal-hash>
download-universal-hash> trying https://static.crates.io/crates/universal-hash/0.5.1/download
download-unsafe-libyaml-norway> structuredAttrs is enabled
download-unsafe-libyaml-norway>
download-unsafe-libyaml-norway> trying https://static.crates.io/crates/unsafe-libyaml-norway/0.2.15/download
download-url> structuredAttrs is enabled
building '/nix/store/a279q4lg8bylry1szm0phdv627cv9lg5-download-uuid-1.23.4.drv'...
building '/nix/store/lziabifz9135mqq3z8khzvqk7k766zzx-download-valuable-serde-0.1.1.drv'...
building '/nix/store/628vhsdi5kj1b2fjc7k9w5m8lv5vlaws-download-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/lr1dhr51nnwd6w0wywrwvfdibb4w5kz5-download-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/4nx6mh363v978ssyihk45whv6vw7xcqw-download-wasm-bindgen-0.2.126.drv'...
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
download-unicode-ident> 100 49298 100 49298 0 0 90098 0 0
download-unicode-normalization> 100 125.4k 100 125.4k 0 0 214.5k 0 0
download-unicode-segmentation> % Total % Received % Xferd Average Speed Time Time Time Current
download-unicode-segmentation> Dload Upload Total Spent Left Speed
download-unicode-segmentation> 100 109.6k 100 109.6k 0 0 204.2k 0 0
download-unicode-width> % Total % Received % Xferd Average Speed Time Time Time Current
download-unicode-width> Dload Upload Total Spent Left Speed
download-universal-hash> % Total % Received % Xferd Average Speed Time Time Time Current
download-universal-hash> Dload Upload Total Spent Left Speed
download-universal-hash> 100 9146 100 9146 0 0 25138 0 0
download-unsafe-libyaml-norway> % Total % Received % Xferd Average Speed Time Time Time Current
download-unsafe-libyaml-norway> Dload Upload Total Spent Left Speed
download-url>
download-url> trying https://static.crates.io/crates/url/2.5.8/download
download-url> % Total % Received % Xferd Average Speed Time Time Time Current
download-url> Dload Upload Total Spent Left Speed
download-utf8-width> structuredAttrs is enabled
download-utf8-width>
download-utf8-width> trying https://static.crates.io/crates/utf8-width/0.1.8/download
download-utf8-width> % Total % Received % Xferd Average Speed Time Time Time Current
download-utf8-width> Dload Upload Total Spent Left Speed
download-uuid> structuredAttrs is enabled
download-uuid>
download-uuid> trying https://static.crates.io/crates/uuid/1.23.4/download
download-valuable-serde> structuredAttrs is enabled
download-valuable-serde>
download-valuable-serde> trying https://static.crates.io/crates/valuable-serde/0.1.1/download
download-wasi> structuredAttrs is enabled
download-wasi>
download-wasi> trying https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download
download-wasip2> structuredAttrs is enabled
building '/nix/store/2r7q65v0k6xdj32f532jrfa5sixn9wb8-download-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/23z3m7hb38hlcvl9rjxcwig7hpqa2s6n-download-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/9gvziad3xr55ixfgy0h7h3vfsah385d7-download-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/zkndsp7lv15n50n5dyd18rzzvs72h30i-download-winapi-util-0.1.11.drv'...
building '/nix/store/r5safy1l7bp6vx7fpv1dcz7gcj9dz409-download-windows-0.58.0.drv'...
building '/nix/store/60n61d68ankkm9r2xp7jfxnyjm1kjii9-download-windows-core-0.58.0.drv'...
building '/nix/store/jz6w458cq76fj034vszz456w30afkdd8-download-windows-implement-0.58.0.drv'...
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
download-unicode-width> 100 276.1k 100 276.1k 0 0 416.6k 0 0
download-unsafe-libyaml-norway> 100 65981 100 65981 0 0 113.6k 0 0
download-url> 100 86512 100 86512 0 0 138.1k 0 0
download-utf8-width> 100 3212 100 3212 0 0 8033 0 0
download-uuid> % Total % Received % Xferd Average Speed Time Time Time Current
download-uuid> Dload Upload Total Spent Left Speed
download-uuid> 100 62165 100 62165 0 0 121.3k 0 0
download-valuable-serde> % Total % Received % Xferd Average Speed Time Time Time Current
download-valuable-serde> Dload Upload Total Spent Left Speed
download-valuable-serde> 100 8015 100 8015 0 0 21981 0 0
download-wasi> % Total % Received % Xferd Average Speed Time Time Time Current
download-wasi> Dload Upload Total Spent Left Speed
download-wasi> 100 28477 100 28477 0 0 71594 0 0
download-wasip2>
download-wasip2> trying https://static.crates.io/crates/wasip2/1.0.4+wasi-0.2.12/download
download-wasip2> % Total % Received % Xferd Average Speed Time Time Time Current
download-wasip2> Dload Upload Total Spent Left Speed
download-wasm-bindgen> structuredAttrs is enabled
download-wasm-bindgen>
download-wasm-bindgen> trying https://static.crates.io/crates/wasm-bindgen/0.2.126/download
download-wasm-bindgen> % Total % Received % Xferd Average Speed Time Time Time Current
download-wasm-bindgen> Dload Upload Total Spent Left Speed
download-wasm-bindgen> 100 67461 100 67461 0 0 130.4k 0 0
download-wasm-bindgen-macro> structuredAttrs is enabled
download-wasm-bindgen-macro>
download-wasm-bindgen-macro> trying https://static.crates.io/crates/wasm-bindgen-macro/0.2.126/download
download-wasm-bindgen-macro> % Total % Received % Xferd Average Speed Time Time Time Current
download-wasm-bindgen-macro> Dload Upload Total Spent Left Speed
download-wasm-bindgen-macro-support> structuredAttrs is enabled
download-wasm-bindgen-macro-support>
download-wasm-bindgen-macro-support> trying https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.126/download
download-wasm-bindgen-shared> structuredAttrs is enabled
download-wasm-bindgen-shared>
download-wasm-bindgen-shared> trying https://static.crates.io/crates/wasm-bindgen-shared/0.2.126/download
download-winapi-util> structuredAttrs is enabled
download-winapi-util>
download-winapi-util> trying https://static.crates.io/crates/winapi-util/0.1.11/download
download-windows> structuredAttrs is enabled
download-windows>
download-windows> trying https://static.crates.io/crates/windows/0.58.0/download
download-windows-core> structuredAttrs is enabled
building '/nix/store/bnzinpjh42jd0akbw85mfci0zqsim33c-download-windows-interface-0.58.0.drv'...
building '/nix/store/1mynmymxzk6yz6nj24cjd5pz8424rlv7-download-windows-link-0.2.1.drv'...
building '/nix/store/rircrn1dalwjgq17xfibgzybbzfv0f42-download-windows-sys-0.61.2.drv'...
building '/nix/store/f7cb20js71i1gwm818h4nqx1iln5911r-download-winnow-0.7.15.drv'...
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
download-wasip2> 100 132.1k 100 132.1k 0 0 207.8k 0 0
download-wasm-bindgen-macro> 100 9303 100 9303 0 0 25140 0 0
download-wasm-bindgen-macro-support> % Total % Received % Xferd Average Speed Time Time Time Current
download-wasm-bindgen-macro-support> Dload Upload Total Spent Left Speed
download-wasm-bindgen-macro-support> 100 82688 100 82688 0 0 155.0k 0 0
download-wasm-bindgen-shared> % Total % Received % Xferd Average Speed Time Time Time Current
download-wasm-bindgen-shared> Dload Upload Total Spent Left Speed
download-wasm-bindgen-shared> 100 11287 100 11287 0 0 28710 0 0
download-winapi-util> % Total % Received % Xferd Average Speed Time Time Time Current
download-winapi-util> Dload Upload Total Spent Left Speed
download-winapi-util> 100 13368 100 13368 0 0 36159 0 0
download-windows> % Total % Received % Xferd Average Speed Time Time Time Current
download-windows> Dload Upload Total Spent Left Speed
download-windows-core>
download-windows-core> trying https://static.crates.io/crates/windows-core/0.58.0/download
download-windows-core> % Total % Received % Xferd Average Speed Time Time Time Current
download-windows-core> Dload Upload Total Spent Left Speed
download-windows-implement> structuredAttrs is enabled
download-windows-implement>
download-windows-implement> trying https://static.crates.io/crates/windows-implement/0.58.0/download
download-windows-implement> % Total % Received % Xferd Average Speed Time Time Time Current
download-windows-implement> Dload Upload Total Spent Left Speed
download-windows-interface> structuredAttrs is enabled
download-windows-interface>
download-windows-interface> trying https://static.crates.io/crates/windows-interface/0.58.0/download
download-windows-link> structuredAttrs is enabled
download-windows-link>
download-windows-link> trying https://static.crates.io/crates/windows-link/0.2.1/download
download-windows-sys> structuredAttrs is enabled
building '/nix/store/m51zrv389jz1jlq382qdskkvhaqn7bfm-download-winpipe-0.1.1.drv'...
building '/nix/store/2cnf21mrvafnss7692nv9p1p7ncvpn5z-download-wit-bindgen-0.57.1.drv'...
building '/nix/store/qb74g9dga7z5ibmini7iyl6lkf402cc1-download-writeable-0.6.3.drv'...
building '/nix/store/3s12lg36dg7pj7b87jfyhvzv8p463j4q-download-xattr-1.6.1.drv'...
building '/nix/store/63yv74qwnfx54aia6cxdgb7wsrbc8xyg-download-yaml-rust2-0.10.4.drv'...
building '/nix/store/qil7f7pfg0z2f1pr6gjp4svfqiin185d-download-yaml-rust2-0.9.0.drv'...
building '/nix/store/4rnlywgy4315fnkbsjp5qhqgql6ghdjb-download-yansi-1.0.1.drv'...
building '/nix/store/9c6sa8ppc91z6sd3xqwa3421rj6qf29c-download-yoke-0.8.3.drv'...
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
download-windows-core> 100 41022 100 41022 0 0 81979 0 0
download-windows-implement> 100 10491 100 10491 0 0 28559 0 0
download-windows-interface> % Total % Received % Xferd Average Speed Time Time Time Current
download-windows-interface> Dload Upload Total Spent Left Speed
download-windows-interface> 100 11246 100 11246 0 0 30202 0 0
download-windows-link> % Total % Received % Xferd Average Speed Time Time Time Current
download-windows-link> Dload Upload Total Spent Left Speed
download-windows-link> 100 6133 100 6133 0 0 16906 0 0
download-windows-sys>
download-windows-sys> trying https://static.crates.io/crates/windows-sys/0.61.2/download
download-windows-sys> % Total % Received % Xferd Average Speed Time Time Time Current
download-windows-sys> Dload Upload Total Spent Left Speed
download-winnow> structuredAttrs is enabled
download-winnow>
download-winnow> trying https://static.crates.io/crates/winnow/0.7.15/download
download-winnow> % Total % Received % Xferd Average Speed Time Time Time Current
download-winnow> Dload Upload Total Spent Left Speed
download-winpipe> structuredAttrs is enabled
download-winpipe>
download-winpipe> trying https://static.crates.io/crates/winpipe/0.1.1/download
download-winpipe> % Total % Received % Xferd Average Speed Time Time Time Current
download-winpipe> Dload Upload Total Spent Left Speed
download-wit-bindgen> structuredAttrs is enabled
download-wit-bindgen>
download-wit-bindgen> trying https://static.crates.io/crates/wit-bindgen/0.57.1/download
download-writeable> structuredAttrs is enabled
download-writeable>
download-writeable> trying https://static.crates.io/crates/writeable/0.6.3/download
download-xattr> structuredAttrs is enabled
download-xattr>
download-xattr> trying https://static.crates.io/crates/xattr/1.6.1/download
download-yaml-rust2> structuredAttrs is enabled
download-yaml-rust2>
download-yaml-rust2> trying https://static.crates.io/crates/yaml-rust2/0.10.4/download
download-yaml-rust2> structuredAttrs is enabled
download-yaml-rust2>
download-yaml-rust2> trying https://static.crates.io/crates/yaml-rust2/0.9.0/download
download-yansi> structuredAttrs is enabled
download-yansi>
download-yansi> trying https://static.crates.io/crates/yansi/1.0.1/download
building '/nix/store/8p4zc3hmqr2dvmyfay7gq9s6ffyz8zhn-download-yoke-derive-0.8.2.drv'...
building '/nix/store/85ibc14iaxc5lkii15jrgcximr7zw37a-download-zerocopy-0.8.52.drv'...
building '/nix/store/xsvx8y0w8lpvhm04khfmkf6lbv1a22sv-download-zerocopy-derive-0.8.52.drv'...
building '/nix/store/z3k687c3b5dprfbmvm1wghp6r92pcwnz-download-zerofrom-0.1.8.drv'...
building '/nix/store/ssncidfpwfqh01crk9fw99mxy5kknyhi-download-zerofrom-derive-0.1.7.drv'...
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
download-windows> 100 9.29M 100 9.29M 0 0 7.46M 0 00:01 00:01 8.76M
download-winnow> 100 182.7k 100 182.7k 0 0 291.6k 0 0
download-winpipe> 100 16051 100 16051 0 0 40597 0 0
download-wit-bindgen> % Total % Received % Xferd Average Speed Time Time Time Current
download-wit-bindgen> Dload Upload Total Spent Left Speed
download-wit-bindgen> 100 71227 100 71227 0 0 128.9k 0 0
download-writeable> % Total % Received % Xferd Average Speed Time Time Time Current
download-writeable> Dload Upload Total Spent Left Speed
download-writeable> 100 26685 100 26685 0 0 67768 0 0
download-xattr> % Total % Received % Xferd Average Speed Time Time Time Current
download-xattr> Dload Upload Total Spent Left Speed
download-xattr> 100 15952 100 15952 0 0 42628 0 0
download-yaml-rust2> % Total % Received % Xferd Average Speed Time Time Time Current
download-yaml-rust2> Dload Upload Total Spent Left Speed
download-yaml-rust2> % Total % Received % Xferd Average Speed Time Time Time Current
download-yaml-rust2> Dload Upload Total Spent Left Speed
download-yansi> % Total % Received % Xferd Average Speed Time Time Time Current
download-yansi> Dload Upload Total Spent Left Speed
download-yoke> structuredAttrs is enabled
download-yoke>
download-yoke> trying https://static.crates.io/crates/yoke/0.8.3/download
download-yoke> % Total % Received % Xferd Average Speed Time Time Time Current
download-yoke> Dload Upload Total Spent Left Speed
download-yoke-derive> structuredAttrs is enabled
download-yoke-derive>
download-yoke-derive> trying https://static.crates.io/crates/yoke-derive/0.8.2/download
download-zerocopy> structuredAttrs is enabled
download-zerocopy>
download-zerocopy> trying https://static.crates.io/crates/zerocopy/0.8.52/download
download-zerocopy-derive> structuredAttrs is enabled
download-zerocopy-derive>
download-zerocopy-derive> trying https://static.crates.io/crates/zerocopy-derive/0.8.52/download
download-zerofrom> structuredAttrs is enabled
download-zerofrom>
download-zerofrom> trying https://static.crates.io/crates/zerofrom/0.1.8/download
building '/nix/store/8m4647vb10hqg1c85ppan7il46ybwj34-download-zeroize-1.9.0.drv'...
building '/nix/store/zqc21d5s3w67lvinf04ak98bxfmz11pd-download-zerotrie-0.2.4.drv'...
building '/nix/store/lkas4i2fwa3yxnkamz1swqkskp0jqagz-download-zerovec-0.11.6.drv'...
building '/nix/store/f84wnbzd1wg1687a4is4xbdcgh36l2jm-download-zerovec-derive-0.11.3.drv'...
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
download-windows-sys> 100 2.40M 100 2.40M 0 0 2.08M 0 00:01 00:01 0
download-yaml-rust2> 100 76453 100 76453 0 0 137.8k 0 0
download-yaml-rust2> 100 133.1k 100 133.1k 0 0 222.1k 0 0
download-yansi> 100 75497 100 75497 0 0 143.4k 0 0
download-yoke> 100 33132 100 33132 0 0 74043 0 0
download-yoke-derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-yoke-derive> Dload Upload Total Spent Left Speed
download-yoke-derive> 100 15077 100 15077 0 0 40567 0 0
download-zerocopy> % Total % Received % Xferd Average Speed Time Time Time Current
download-zerocopy> Dload Upload Total Spent Left Speed
download-zerocopy-derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-zerocopy-derive> Dload Upload Total Spent Left Speed
download-zerofrom> % Total % Received % Xferd Average Speed Time Time Time Current
download-zerofrom> Dload Upload Total Spent Left Speed
download-zerofrom-derive> structuredAttrs is enabled
download-zerofrom-derive>
download-zerofrom-derive> trying https://static.crates.io/crates/zerofrom-derive/0.1.7/download
download-zerofrom-derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-zerofrom-derive> Dload Upload Total Spent Left Speed
download-zeroize> structuredAttrs is enabled
download-zeroize>
download-zeroize> trying https://static.crates.io/crates/zeroize/1.9.0/download
download-zerotrie> structuredAttrs is enabled
download-zerotrie>
download-zerotrie> trying https://static.crates.io/crates/zerotrie/0.2.4/download
download-zerovec> structuredAttrs is enabled
building '/nix/store/4w2wcg4lfmznq2wnmb4x4phxw40pczrl-download-zmij-1.0.21.drv'...
building '/nix/store/ykvn58b1ww6w6g29bj78wlcrwb225wgf-dry-activate.drv'...
building '/nix/store/3laskww28fha2fb7f4j3c132xh561ni5-radicle-devcontainer-ci-devcontainer.yaml.drv'...
building '/nix/store/flwmwgd6lk7ip9hkbay6cl1rxpm23hmm-runtime-deps.drv'...
building '/nix/store/q66vmwnrd4rpk1bjpj2pc8rjbg44zymb-system-generators.drv'...
building '/nix/store/08v07wdsic8ppc2rvx17f2rvsizf7555-system-path.drv'...
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
download-zerocopy> 100 277.4k 100 277.4k 0 0 414.3k 0 0
download-zerocopy-derive> 100 98218 100 98218 0 0 170.8k 0 0
download-zerofrom> 100 6156 100 6156 0 0 15007 0 0
download-zerofrom-derive> 100 8853 100 8853 0 0 24222 0 0
download-zeroize> % Total % Received % Xferd Average Speed Time Time Time Current
download-zeroize> Dload Upload Total Spent Left Speed
download-zeroize> 100 24480 100 24480 0 0 59345 0 0
download-zerotrie> % Total % Received % Xferd Average Speed Time Time Time Current
download-zerotrie> Dload Upload Total Spent Left Speed
download-zerotrie> 100 83690 100 83690 0 0 158.3k 0 0
download-zerovec>
download-zerovec> trying https://static.crates.io/crates/zerovec/0.11.6/download
download-zerovec> % Total % Received % Xferd Average Speed Time Time Time Current
download-zerovec> Dload Upload Total Spent Left Speed
download-zerovec-derive> structuredAttrs is enabled
download-zerovec-derive>
download-zerovec-derive> trying https://static.crates.io/crates/zerovec-derive/0.11.3/download
download-zerovec-derive> % Total % Received % Xferd Average Speed Time Time Time Current
download-zerovec-derive> Dload Upload Total Spent Left Speed
download-zerovec-derive> 100 22115 100 22115 0 0 57794 0 0
download-zmij> structuredAttrs is enabled
download-zmij>
download-zmij> trying https://static.crates.io/crates/zmij/1.0.21/download
radicle-devcontainer-ci-devcontainer.yaml> structuredAttrs is enabled
runtime-deps> structuredAttrs is enabled
building '/nix/store/z4d4r7lk53i68ysdz2by9h7zv0gj1gah-system-path.drv'...
building '/nix/store/mkm3m13f4v9kmdmmvcc63mjgm93ngj0x-system-shutdown.drv'...
building '/nix/store/c4zj4yhz294dwdz8rdqr3qqalsnm0z4h-tmpfiles.d.drv'...
building '/nix/store/8ayc5sm7w7y4dg1dqim8n4ggyzmkvm4m-unpack-adler2-2.0.1.drv'...
building '/nix/store/78kgqmm08mq5l1h7ga37kc5z63is4wki-unpack-aead-0.5.2.drv'...
building '/nix/store/qbxfgwapmm7lpwbswrryww3760nph2r3-unpack-aes-0.8.4.drv'...
building '/nix/store/54ln73q9q3wdy5mffhsb6qfx10gkw7np-unpack-aes-gcm-0.10.3.drv'...
building '/nix/store/0810n7g4j97g4vhlfr6a4a6g4wayn900-unpack-ahash-0.8.12.drv'...
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
download-zerovec> 100 125.5k 100 125.5k 0 0 211.7k 0 0
download-zmij> % Total % Received % Xferd Average Speed Time Time Time Current
download-zmij> Dload Upload Total Spent Left Speed
download-zmij> 100 26665 100 26665 0 0 67608 0 0
system-path> structuredAttrs is enabled
system-path> created 6819 symlinks in user environment
system-path> install-info: warning: no info dir entry in `/nix/store/il9318pd96j6wr81kncnn7s7hvxixc92-system-path/share/info/notes.info'
system-path> structuredAttrs is enabled
system-path> created 7080 symlinks in user environment
system-path> install-info: warning: no info dir entry in `/nix/store/gfagdhy7x63papcfbnbgyq20zg6msd0d-system-path/share/info/notes.info'
building '/nix/store/sw45ww87kzavx5jligy59gj8krn7fzqk-unpack-aho-corasick-1.1.4.drv'...
building '/nix/store/fdr4zq1v2fsf9ylwmh8kddx7kq467h65-unpack-aligned-0.4.3.drv'...
building '/nix/store/2q05g8xwckz8li193y337pm08ywqqy04-unpack-amplify-4.9.0.drv'...
building '/nix/store/sfgwf3lm4b8a2zdj8ljwg7x1vqvmcjzb-unpack-amplify_derive-4.0.1.drv'...
building '/nix/store/j4124njnjskrr6zv4s3rvhcg48zd7ia8-unpack-amplify_num-0.5.4.drv'...
building '/nix/store/bf5g2q7iw797y2gih0ywg6672pbjfmpk-unpack-amplify_syn-2.0.1.drv'...
building '/nix/store/s6b54s9wfvqj94z43jmxp08hh5ldf2nr-unpack-anstream-1.0.0.drv'...
building '/nix/store/li2v2fz1k6hys4r7gdksbwn68la9pwjr-unpack-anstyle-1.0.14.drv'...
building '/nix/store/5jdmgqdss0k2npn3raav63y7mq0i54g6-unpack-anstyle-parse-1.0.0.drv'...
building '/nix/store/1qq6mcbghdiqz8dy7cq1yhh10xm20690-unpack-anstyle-query-1.1.5.drv'...
building '/nix/store/zpdp8gk63qwl9721agplnhyjqp13jq35-unpack-anstyle-wincon-3.0.11.drv'...
building '/nix/store/kr45z05i4ixmlj96hq05cnk0c6nrxlhg-unpack-anyhow-1.0.103.drv'...
building '/nix/store/ql6j7qpc896295cg31n7d53ngrw5if6q-unpack-arraydeque-0.5.1.drv'...
building '/nix/store/hrskj655ssiy5qmb4svhp91yz1sly8x8-unpack-arrayvec-0.7.7.drv'...
building '/nix/store/rgjm1mzy5di4awp0iszqb8xrmn20n7hf-unpack-as-slice-0.2.1.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/9dvsbcvp04fgm4dw4fr21hb69w0jz4pr-X-Restart-Triggers-systemd-tmpfiles-resetup.drv'...
building '/nix/store/8aa6978z3bdffcrpdjnnm94nsdfp709q-docker-image-radicle-e2e-fixture.tar.gz.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/9dvsbcvp04fgm4dw4fr21hb69w0jz4pr-X-Restart-Triggers-systemd-tmpfiles-resetup.drv'...
building '/nix/store/8aa6978z3bdffcrpdjnnm94nsdfp709q-docker-image-radicle-e2e-fixture.tar.gz.drv'...
building '/nix/store/r4v1ibs68n5c940gqrd15wqk6lyidnxm-unpack-ascii-1.1.0.drv'...
building '/nix/store/xvfdr9glidcibk6f1yvxh2f4f00kz86b-unpack-askama-0.12.1.drv'...
building '/nix/store/15297snz84aaxzpfysbavli9gy1xbras-unpack-askama_derive-0.12.5.drv'...
building '/nix/store/ycf1fq393gb0zfkkz3p16bsv9fszrvhg-unpack-askama_escape-0.10.3.drv'...
building '/nix/store/pnh7rc67lc9bjarpfbsr2mnqrmxc1xnp-unpack-askama_parser-0.2.1.drv'...
building '/nix/store/knyypxr8klvqk9al4j5f5mgsz6f7h8rp-unpack-atom_syndication-0.12.8.drv'...
building '/nix/store/rncq234brz745q4l9qahasnx8qab1wq2-unpack-atomic-0.6.1.drv'...
building '/nix/store/hb1mdvkmsqk02qjw43fs2gr19q1nhdzm-unpack-autocfg-1.5.1.drv'...
building '/nix/store/v9fgbl89xs111dmk2idslcwnda1ss0m6-unpack-base-x-0.2.11.drv'...
building '/nix/store/l8h93h8psizhl3pcv8lc78hz6yjp0qh4-unpack-base256emoji-1.0.2.drv'...
building '/nix/store/71s7zhp243min131g1vpcf48fb2qmyi4-unpack-base32-0.4.0.drv'...
building '/nix/store/690p4cpmw3854pqwrb32yk8pfk4xbvn6-unpack-base45-3.2.0.drv'...
building '/nix/store/qgnii5wwcj1a3mwvyi1z6q4pmdh87q2n-unpack-base64ct-1.8.3.drv'...
building '/nix/store/xc9bm1s8hrbq73wz40780w4lxi22xjvs-unpack-basic-toml-0.1.10.drv'...
building '/nix/store/qkhq0srrp22x80bcizkp3xy08s0h83jm-unpack-bcrypt-pbkdf-0.10.0.drv'...
building '/nix/store/1fiijd0vb9lpnp4h6zbf6x3822rc3b1a-unpack-bitflags-2.13.0.drv'...
building '/nix/store/276vqdvq2s4m1hzxz7rkl9f2kjxzpfj4-unpack-block-padding-0.3.3.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/998msxnwwvvhgdj349jq5d4yg0wzf1gf-dbus-1.drv'...
building '/nix/store/w2n07xq6yzr4z2ln4m534c15i2n9qygs-dbus-1.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
docker-image-radicle-e2e-fixture.tar.gz> Adding layer...
docker-image-radicle-e2e-fixture.tar.gz> tar: Removing leading `/' from member names
docker-image-radicle-e2e-fixture.tar.gz> Adding meta...
docker-image-radicle-e2e-fixture.tar.gz> Cooking the image...
building '/nix/store/998msxnwwvvhgdj349jq5d4yg0wzf1gf-dbus-1.drv'...
building '/nix/store/w2n07xq6yzr4z2ln4m534c15i2n9qygs-dbus-1.drv'...
building '/nix/store/bhang9z8kaqzska9i606xfxgi23zd1i5-unpack-block2-0.6.2.drv'...
building '/nix/store/g925mb82d3rhb86007zcyz1ff3vzkl6n-unpack-blowfish-0.9.1.drv'...
building '/nix/store/h6z6k7dizarq7xdl5yzk38xfz7hf31f8-unpack-bstr-1.12.3.drv'...
building '/nix/store/b15qrrb93nvqwxpiypp28j6xlr9gamnf-unpack-bumpalo-3.20.3.drv'...
building '/nix/store/ydaxca5abvn5zqskl2kjd62zywixiy5f-unpack-bytemuck-1.25.0.drv'...
building '/nix/store/8flmdms2jaidq9i0jysdwy1gg3hgvcvb-unpack-bytesize-2.4.0.drv'...
building '/nix/store/7ykyqrikbq1yg1zxy13bxz9sgl8s7rhr-unpack-cbc-0.1.2.drv'...
building '/nix/store/6n29h1lcgy9r1m4ywg02hrmkq8l9srf0-unpack-cc-1.2.65.drv'...
building '/nix/store/ahdgbvcainc5i107a3cvil4i37z5gjn3-unpack-cfg-if-1.0.4.drv'...
building '/nix/store/4p3dh1vsw6qrdhk2vwsx2dgbyi5dz0ha-unpack-chacha20-0.9.1.drv'...
building '/nix/store/dxwmlssws5c3jwgvnsha87h2c292kcdi-unpack-chrono-0.4.45.drv'...
building '/nix/store/ikfqmhsdl2b6pvzpvpn784dq3yy5wvjn-unpack-cipher-0.4.4.drv'...
building '/nix/store/i7qzzkaaq628rikxxk7cmkvhmqp4djqx-unpack-clap-4.6.1.drv'...
building '/nix/store/m6wm13mp48msl83ln8lmpd1hcsll14iz-unpack-clap_builder-4.6.0.drv'...
building '/nix/store/r0q7fmiyz0z8jnh5jnz8zn07ckij35h9-unpack-clap_derive-4.6.1.drv'...
building '/nix/store/84bzrs6z9q1k85raijhv65hgiijrzshz-unpack-clap_lex-1.1.0.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/fxxqzgvxc613lcz0bd3j08ws479c1z7x-unit-systemd-tmpfiles-resetup.service.drv'...
docker-image-radicle-e2e-fixture.tar.gz> Finished.
building '/nix/store/fxxqzgvxc613lcz0bd3j08ws479c1z7x-unit-systemd-tmpfiles-resetup.service.drv'...
building '/nix/store/76v98k9w5cr0bk3497s3z4id9m9ldmcj-unpack-colorchoice-1.0.5.drv'...
building '/nix/store/a1d7i62g74y8mlgr6hs6n6rgp8iw7sdi-unpack-const-str-0.4.3.drv'...
building '/nix/store/y24qb61r97y5wynkijnn8gnwlh2wifwi-unpack-crc32fast-1.5.0.drv'...
building '/nix/store/a12hp5qq1dv70rpbmssjxkld3h1znf2j-unpack-crossbeam-channel-0.5.15.drv'...
building '/nix/store/p59vcblvkw7kx9ifx90y0rav45g5dbs4-unpack-crossbeam-deque-0.8.6.drv'...
building '/nix/store/k2y7x3rdg76c88rz4360axmq8ysdgqbg-unpack-crossbeam-epoch-0.9.18.drv'...
building '/nix/store/f8riaqlhaannk5cia5px058shz1jxv3z-unpack-crossbeam-utils-0.8.21.drv'...
building '/nix/store/valzidlfx9jdiq02ixq445yqfv4nkzak-unpack-crypto-common-0.1.7.drv'...
building '/nix/store/d6ix63n8b572k3z4vc29fb145x34x0xl-unpack-ct-codecs-1.1.7.drv'...
building '/nix/store/qj7f70qqlg68221aqmw4jna08hq6sb0a-unpack-ctr-0.9.2.drv'...
building '/nix/store/wm1yh2cqafrw47xcii1dqaqyq3s20zc6-unpack-ctrlc-3.5.2.drv'...
building '/nix/store/yajzci1c80gbqp5ys88gxlgykagiq1s9-unpack-culpa-1.0.2.drv'...
building '/nix/store/c7nc4390yp00avhmbcv8qv2h9mbwh36b-unpack-culpa-macros-1.0.2.drv'...
building '/nix/store/b9vcxcw58w3n8iwzdlfa9q2sdqdk503q-unpack-cvt-0.1.2.drv'...
building '/nix/store/jnn2qcnb8i3h9jhb1km03dcwq7c7lc76-unpack-cypheraddr-0.4.1.drv'...
building '/nix/store/5hfq3c6rmdmw4ic445ab992qd20sq7rb-unpack-cyphergraphy-0.3.0.drv'...
building '/nix/store/1981c08h15n73dhm0anackak7nzh07ky-unpack-cyphernet-0.5.3.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/xbfvjlqi5srdv8wkgj1jqbj0m259vxz2-X-Restart-Triggers-dbus-broker.drv'...
building '/nix/store/xd08z16xsjw8ii54w1gqqp958n9gzyvc-X-Restart-Triggers-dbus-broker.drv'...
building '/nix/store/xbfvjlqi5srdv8wkgj1jqbj0m259vxz2-X-Restart-Triggers-dbus-broker.drv'...
building '/nix/store/xd08z16xsjw8ii54w1gqqp958n9gzyvc-X-Restart-Triggers-dbus-broker.drv'...
building '/nix/store/53hyzfgcqgsgz7r548vg1k5clkf8alr7-unpack-darling-0.20.11.drv'...
building '/nix/store/ay7m4b9bna31pz76dnqiivipqsh3bhhq-unpack-darling_core-0.20.11.drv'...
building '/nix/store/lf5y84zxf6rk9pvbrrgxwbmirpax20c3-unpack-darling_macro-0.20.11.drv'...
building '/nix/store/ih4iy16fc2zx726z0cc1kxinx6c0m0dy-unpack-data-encoding-2.11.0.drv'...
building '/nix/store/hn8jylk02xpai8aqwilbg4az6iyxfnc9-unpack-data-encoding-macro-0.1.20.drv'...
building '/nix/store/ks3m0dfnf512qrdx2qhl6phzx3xfjrs6-unpack-data-encoding-macro-internal-0.1.18.drv'...
building '/nix/store/kzfj8f89vhzrc3x2a718g3b1r9l7bl2m-unpack-defer-heavy-0.1.0.drv'...
building '/nix/store/d9vhzla3pby3wjfrr6fwc9vzfylhhybc-unpack-der-0.7.10.drv'...
building '/nix/store/5z0rmq89w3xba2l613qyd0zp3nkxsh17-unpack-deranged-0.5.8.drv'...
building '/nix/store/pjsvgfnwzki5xxac51h5kriyd23n50xk-unpack-derive_builder-0.20.2.drv'...
building '/nix/store/j7hdc9wf4w8wvqnsdcxkqj6qs8hxdb97-unpack-derive_builder_core-0.20.2.drv'...
building '/nix/store/7047w3a5lf8w504jzlwhxhkhz555prid-unpack-derive_builder_macro-0.20.2.drv'...
building '/nix/store/6pghhk98fmnhmgz2l6m87vxm9w3gszis-unpack-descape-3.0.0.drv'...
building '/nix/store/nkkdzj0iyd65d3bx1y561srppsf03fhz-unpack-deunicode-1.6.2.drv'...
building '/nix/store/ai9n7i7np158acfr70p2jhf9gxqas50z-unpack-diligent-date-parser-0.1.5.drv'...
building '/nix/store/919hl74np5i3pdlx7gqjvggpr3ji1d99-unpack-dispatch2-0.3.1.drv'...
building '/nix/store/zar2hgarccnbc568jmpgjfkccfz49qcr-unpack-displaydoc-0.2.6.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/rcxkk5fchphpnz8xrjs1xii956kb9jmf-test-script.drv'...
building '/nix/store/rcxkk5fchphpnz8xrjs1xii956kb9jmf-test-script.drv'...
building '/nix/store/cgm525y584iln3s07dpq55pf94gd51p3-unpack-doc-comment-0.3.4.drv'...
building '/nix/store/dv2972qpjnjkvnbpighfwi3skwqysang-unpack-dunce-1.0.5.drv'...
building '/nix/store/hvaf4mvbj1bvx1qdy7gjnygv4d7i7sc7-unpack-duration-str-0.21.0.drv'...
building '/nix/store/yahgcwnfgkh337ayxx0k5xmmdp5w78mf-unpack-dyn-clone-1.0.20.drv'...
building '/nix/store/7y1ky835dvhxdgif6r0hijzpcjgrc2hf-unpack-ec25519-0.1.0.drv'...
building '/nix/store/40m9yqxyp2zgp5qacl93qcycd256bwqx-unpack-ed25519-1.5.3.drv'...
building '/nix/store/z76a35cm9x7sv9c0345ss8x8hv9vs59h-unpack-erased-serde-0.4.10.drv'...
building '/nix/store/3987jahxgwp1xwpbxlhgiyqb6k2rannl-unpack-errno-0.3.14.drv'...
building '/nix/store/fnkvs4gsahcxqr975asw764kyf9qph1s-unpack-fast-glob-0.3.3.drv'...
building '/nix/store/qh3hj9d7yfxnk9g94q1z6h8pbwlqfqkd-unpack-fastrand-2.4.1.drv'...
building '/nix/store/1rls6m38483fkf4ag1n89iwhpgfja88c-unpack-ff-0.13.1.drv'...
building '/nix/store/vqqw7v0ybjbd2pbicjm8j88n69axjdz7-unpack-figment-0.10.19.drv'...
building '/nix/store/znvcjzliyy0ncpxfnxr8x7nf7i9wdmba-unpack-filetime-0.2.29.drv'...
building '/nix/store/dbpmisii0rx2jd3rlkj0ihq3k4xawf1q-unpack-find-msvc-tools-0.1.9.drv'...
building '/nix/store/7mpbq459cflpy4lbxn5chvc133a0y0n6-unpack-flate2-1.1.9.drv'...
building '/nix/store/qh7a9f0y9z3wkdf1zs0inxs1ff4k2997-unpack-foldhash-0.1.5.drv'...
building '/nix/store/jjj3y1npki258899bmb7nf3g97108bhd-unpack-form_urlencoded-1.2.2.drv'...
building '/nix/store/gpw33bp4crzvgnv3vi9dj2dn2br0bh68-unpack-fs2-0.4.3.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/0r3z5xax1g0q9cga8x1mwbycp3qsa4iz-unit-dbus-broker.service.drv'...
building '/nix/store/2bd98lfnbkbcy3z8zi7cvgv8cfzv31ky-unit-dbus-broker.service.drv'...
building '/nix/store/y2iafwjnjddhy0jz7s4zfdgwdrx1i5z4-unit-dbus-broker.service.drv'...
building '/nix/store/ynxyki3sracigmi7k7zfklkc1nqpayzc-unit-dbus-broker.service.drv'...
building '/nix/store/0r3z5xax1g0q9cga8x1mwbycp3qsa4iz-unit-dbus-broker.service.drv'...
building '/nix/store/2bd98lfnbkbcy3z8zi7cvgv8cfzv31ky-unit-dbus-broker.service.drv'...
building '/nix/store/y2iafwjnjddhy0jz7s4zfdgwdrx1i5z4-unit-dbus-broker.service.drv'...
building '/nix/store/ynxyki3sracigmi7k7zfklkc1nqpayzc-unit-dbus-broker.service.drv'...
building '/nix/store/byh6r3i6bjqw567vpw654603cw0zw9dq-unpack-fs_at-0.2.1.drv'...
building '/nix/store/whs0x6hdikxbg8mip0r2rw3wbchnrj06-unpack-futures-core-0.3.32.drv'...
building '/nix/store/s5yyd1nqnnkzqs1av7d389vml3dzilxf-unpack-futures-task-0.3.32.drv'...
building '/nix/store/7cdghjs05am2qgvg8xm4z4jhngapwlfq-unpack-futures-util-0.3.32.drv'...
building '/nix/store/lwfzhshlg9qkkdcjprqpacrc90i9apjy-unpack-generator-0.7.5.drv'...
building '/nix/store/kkv8qdysx22f93h5v0qkh42bq39fspjk-unpack-getopts-0.2.24.drv'...
building '/nix/store/93v0a323ci5nxznxgxh0b6hb2iciahzy-unpack-getrandom-0.2.17.drv'...
building '/nix/store/830cshgcs41kvx6wpvqjkw9vz2khczdz-unpack-getrandom-0.3.4.drv'...
building '/nix/store/xwdvf6h5qbx8wzvwgppix1zjjwc3kzkm-unpack-getrandom-0.4.3.drv'...
building '/nix/store/33cl8ywvdmdkz0b9j0jh2x39qa9x63qc-unpack-ghash-0.5.1.drv'...
building '/nix/store/xfs6ps9hn02w69hfcgb8j8yamg97w9fn-unpack-git-ref-format-0.6.0.drv'...
building '/nix/store/b53h786axw77r22ngk33gwfldjb19p7h-unpack-git-ref-format-core-0.6.0.drv'...
building '/nix/store/8r3c8w1kc7907kqcigd2zrf6s3r38q1s-unpack-git-ref-format-macro-0.6.0.drv'...
building '/nix/store/6qn5kv1w21c0ffbr18v84nznb9w00zd3-unpack-git2-0.20.4.drv'...
building '/nix/store/ypncw6g6hpmmprdh7d9h5l2j1mdcglnx-unpack-globset-0.4.18.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/l4bh7jmfprzkpns4nfhl1jbsr0x2s030-unpack-globwalk-0.9.1.drv'...
building '/nix/store/yr2zqa9v02r0jhfwkkppr1qsnlxjzff0-unpack-hashbrown-0.15.5.drv'...
building '/nix/store/pyy8nvw6v5nfz9c61p23n1j0sm3k9q9l-unpack-hashbrown-0.17.1.drv'...
building '/nix/store/2yikhgl9jcxpssk8125vrq8d3p0ckpf0-unpack-hashlink-0.10.0.drv'...
building '/nix/store/hd5j2wzfrv6qkrscfciqjpzyq6zxfj79-unpack-hashlink-0.9.1.drv'...
building '/nix/store/ls8jzpk108973bgnwvjzlgxq7ia8adak-unpack-html-escape-0.2.13.drv'...
building '/nix/store/2q9cyrmch934zdiwam8yfj7dc35qrm9p-unpack-html-page-0.5.0.drv'...
building '/nix/store/45zlzvnnj2d81khrl1gfw7970irw4gpz-unpack-humansize-2.1.3.drv'...
building '/nix/store/4061g49scf0niysdi99g0mqichp4qhrf-unpack-icu_collections-2.2.0.drv'...
building '/nix/store/wm3br8fqgsgfwmrrb100d884avyibzjl-unpack-icu_locale_core-2.2.0.drv'...
building '/nix/store/2l16pvjmzblp6q3yk4za7ir9ig09rkl7-unpack-icu_normalizer-2.2.0.drv'...
building '/nix/store/m6j5543bxx5qwiijzam8ddqsi62774kp-unpack-icu_normalizer_data-2.2.0.drv'...
building '/nix/store/4i0zghc6h6p0bj4z8cpf45nyrl6bkiw9-unpack-icu_properties-2.2.0.drv'...
building '/nix/store/daypm3r8b8fdhpajcbjh4wymkxw02mgn-unpack-icu_properties_data-2.2.0.drv'...
building '/nix/store/ic38wijy6bhw1lfw75y9zz6kw051fxwv-unpack-icu_provider-2.2.0.drv'...
building '/nix/store/3nj7a5db5h8yq8hgajz242hrxgpr046h-unpack-idna-1.1.0.drv'...
building '/nix/store/sfrqhd8jm00vrip1z5l70244qri400az-unpack-idna_adapter-1.2.2.drv'...
building '/nix/store/zaqnzb0plg40l31x0jn4hwyc6jrz37ki-unpack-ignore-0.4.27.drv'...
building '/nix/store/wmjr1rnflmjy1x2y2r7rcmab4mzmp7yg-unpack-indexmap-2.14.0.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/q4q5nbycd8mp818khh4wparpcw7cdwlk-system-units.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/q4q5nbycd8mp818khh4wparpcw7cdwlk-system-units.drv'...
building '/nix/store/5dfila1v7m872hbk9z64fxf6141rm6ir-unpack-inlinable_string-0.1.15.drv'...
building '/nix/store/gm8vif02avb4l8nnd8a3mvw31pps8jzf-unpack-inout-0.1.4.drv'...
building '/nix/store/5kzxyl9vizn90qn1rjv9qns7wyw3yms6-unpack-is_terminal_polyfill-1.70.2.drv'...
building '/nix/store/4ahmv4cwg5kn3nm5gbyamf68b2n0qbx0-unpack-itoa-1.0.18.drv'...
building '/nix/store/gx7ra1vi0j6ir7ap9q1c6p44pyfpsnfh-unpack-jobserver-0.1.34.drv'...
building '/nix/store/dkw6cm9m653sp9hm2mdpblk3grjvfv9j-unpack-js-sys-0.3.103.drv'...
building '/nix/store/hnxdhsm15linbiwhz5lqpi2pppfab34z-unpack-keccak-0.1.6.drv'...
building '/nix/store/xf4xixh76jgwg23vq9axgdphg6l96d6v-unpack-libc-0.2.186.drv'...
building '/nix/store/vx7dr2smhssfla9h9vbmk1bkyc0wdfc4-unpack-libgit2-sys-0.18.5+1.9.4.drv'...
building '/nix/store/8xn7dqkjqvvz1615zixnm0ldm83gmagw-unpack-libm-0.2.16.drv'...
building '/nix/store/r67gwx67i94h7j31xr7lvfr1jnyccanr-unpack-libz-sys-1.1.29.drv'...
building '/nix/store/i40cz7mxxfqnb3fr9vpi64a3zc742r2v-unpack-line-col-0.2.1.drv'...
building '/nix/store/bsp3ppaicqqdrlgqb181rrn1pwmsf9jr-unpack-linux-raw-sys-0.12.1.drv'...
building '/nix/store/bjdj0007vrkx1cc0d2af78bgg7x4dnjc-unpack-litemap-0.8.2.drv'...
building '/nix/store/rs3qmfp2fw7qgmll1b17i88ziha58p6x-unpack-log-0.4.33.drv'...
building '/nix/store/v2plsd1y2j4c53asz5prnnvvlw8cppby-unpack-loom-0.5.6.drv'...
building '/nix/store/5kdmamsbw54qlv8nn00wzdxq459ymn42-unpack-marked-yaml-0.7.2.drv'...
building '/nix/store/ygsvvd64dsxjww020s09znk7hjnzb727-unpack-marked-yaml-0.8.0.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/dz14sw7pixj02c3q72b1iv7p22i99qin-unpack-match-lookup-0.1.2.drv'...
building '/nix/store/p7li4x5r7kmhmgfycd4xc4x0irai2wy9-unpack-matchers-0.2.0.drv'...
building '/nix/store/las2xq0xlc7av1ry5czpchxcfrsi5z73-unpack-memchr-2.8.2.drv'...
building '/nix/store/fiq073ficvf1yfh4i36aiidxk4l5yifm-unpack-memoffset-0.9.1.drv'...
building '/nix/store/yg25fb7h9x0awg74p4j2nm5r5y822hy8-unpack-miniz_oxide-0.8.9.drv'...
building '/nix/store/yb34inmwnhrmjfdqmba5pah9071m40sz-unpack-multibase-0.9.3.drv'...
building '/nix/store/f222yr7mqkl3cics5663xw657j24g03s-unpack-nix-0.31.3.drv'...
building '/nix/store/r7c7fya56czjlzw9zdb3l1xqwy0hnpsw-unpack-nonempty-0.11.0.drv'...
building '/nix/store/7nm7lzjlz2c4il7188503w47z1y26vk4-unpack-nonempty-0.12.0.drv'...
building '/nix/store/fnvqkg2x2378zkz6ry28zhkviwa95jj0-unpack-nonempty-0.9.0.drv'...
building '/nix/store/y1lmy8gnbcwjvslkqppxkpfqj34pg5vz-unpack-normpath-1.5.1.drv'...
building '/nix/store/7675dgv8w9fl34y4fcpxwfz2cpamqpip-unpack-nu-ansi-term-0.50.3.drv'...
building '/nix/store/5zzplakvgyy97x5rdrllf55l832ysrs2-unpack-num-bigint-dig-0.8.6.drv'...
building '/nix/store/y90g6vhlj32gjviijhvkhqjcnchpdq53-unpack-num-conv-0.2.2.drv'...
building '/nix/store/7mkzmiac5s8xm8y07kdm4fdfxm5bw513-unpack-objc2-0.6.4.drv'...
building '/nix/store/rc6sv6dlilp2jgw30fxd4j4py4fmz6aj-unpack-objc2-encode-4.1.0.drv'...
building '/nix/store/wk7r9dgbwqbjd8y8nm6jllpsndk0gxai-unpack-once_cell-1.21.4.drv'...
building '/nix/store/bq2silzly4kdl639sj07hxp29gccm3b2-unpack-once_cell_polyfill-1.70.2.drv'...
building '/nix/store/smvxwhlbz2pi9wbjjphvrph195anjkk2-unpack-opaque-debug-0.3.1.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/12angdvmvkflhyz8gslddrdkgpnqd2p6-unpack-p384-0.13.1.drv'...
building '/nix/store/bf3cgllfv9ny0q3v1i26jpz5j2yyhxfi-unpack-p521-0.13.3.drv'...
building '/nix/store/8ff2gr8vfdp47qqmi7khjda73c8dy9ap-unpack-pbkdf2-0.12.2.drv'...
building '/nix/store/5zjk1jr33by74l1bkmbaaplqbvwbkznd-unpack-pear-0.2.9.drv'...
building '/nix/store/dpv85qhd6187xyjsiv1ala1zhxb9mdcr-unpack-pear_codegen-0.2.9.drv'...
building '/nix/store/pv071f0bsab50n3p4z0nzvinq8a7yf0x-unpack-percent-encoding-2.3.2.drv'...
building '/nix/store/ywwhr5qiylk8ildc6l6fy25sv9yyzsjq-unpack-pest-2.8.6.drv'...
building '/nix/store/wfhwmlgn37iakdapam70h5fhdhbhq449-unpack-pest_derive-2.8.6.drv'...
building '/nix/store/ww16mvdfmj1g40ch8ci26b298kfk2z13-unpack-pest_generator-2.8.6.drv'...
building '/nix/store/3ckkb9s3ip3gf9ss9hrwswbkbs12pql8-unpack-pest_meta-2.8.6.drv'...
building '/nix/store/q3rxkxffz74s2478v435yv002yr0gisv-unpack-pikchr-0.1.4.drv'...
building '/nix/store/wxxd5s7dk0v9vvfbb5s1hcq7znhqqw05-unpack-pin-project-lite-0.2.17.drv'...
building '/nix/store/qanjcgdcwf5hgg550dik65a98a71449g-unpack-pkg-config-0.3.33.drv'...
building '/nix/store/5jx3g6hqd6zykiaq5rdaipm7fghxchkw-unpack-poly1305-0.8.0.drv'...
building '/nix/store/45frkrnxx4apvda3qz7ainfsi54yb7am-unpack-polyval-0.6.2.drv'...
building '/nix/store/wx69scp579sbb83chnmqjkmhgl35ssky-unpack-potential_utf-0.1.5.drv'...
building '/nix/store/xqlfahr9gqy9pjqq1rsx3gssvbvjdq0g-unpack-proc-macro-error-attr2-2.0.0.drv'...
building '/nix/store/i6w75z3fnd8a3zq177c1hm4bbh7pyc52-unpack-proc-macro-error2-2.0.1.drv'...
building '/nix/store/9c88y272g4w03yy324l78lsqzwwri589-unpack-proc-macro2-1.0.106.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/30kc16lbd98mi27lb4xgc4nlsdkh5iih-unpack-proc-macro2-diagnostics-0.10.1.drv'...
building '/nix/store/p648lb5l1frzxaf0c0pnjzzkqhriximy-unpack-pulldown-cmark-0.13.4.drv'...
building '/nix/store/jzn0kxz0mawf3hg0l85bwrf43h26736k-unpack-pulldown-cmark-escape-0.11.0.drv'...
building '/nix/store/3v6rlbxx4s2db4rvb5i7rpivyj95881q-unpack-qcheck-1.0.0.drv'...
building '/nix/store/r7iabgh5jcyygb0jqbyb9y2r9yb42yw5-unpack-quick-xml-0.39.4.drv'...
building '/nix/store/ip9g270ma7lawwajbhynjqjh0jg1wyri-unpack-quote-1.0.46.drv'...
building '/nix/store/wqcrf527gq8vps8i7nr7j659s3sm3lv5-unpack-r-efi-5.3.0.drv'...
building '/nix/store/x524127klzd8ws5q1l5a3738z3f44a08-unpack-r-efi-6.0.0.drv'...
building '/nix/store/m8l6hr9h3s7l4k18mbw6cqllc2rn2rjj-unpack-radicle-0.22.1.drv'...
building '/nix/store/4jyka5ga1q0arym4nsffwjplak2h13hx-unpack-radicle-ci-broker-0.29.0.drv'...
building '/nix/store/6f6np9wkx92lj5jsa25r4y3fpr2bwkvp-unpack-radicle-cob-0.19.0.drv'...
building '/nix/store/gz10ps9ridfja3zvfrzirfs77dxzyqm9-unpack-radicle-core-0.2.0.drv'...
building '/nix/store/8lw1n43drapis5phpn2mc2iy62f0mvmw-unpack-radicle-crypto-0.16.0.drv'...
building '/nix/store/jjllf5sfk73jwzhw7ng3nyia6wa2qx4f-unpack-radicle-dag-0.10.0.drv'...
building '/nix/store/yyjld6kxd040z228m3fvf9jafvh229sy-unpack-radicle-git-ext-0.12.0.drv'...
building '/nix/store/jrpkxdjp6kxsnr5y39ab30pclwjg8qja-unpack-radicle-git-metadata-0.1.0.drv'...
building '/nix/store/daqng7nzwdfcsjh212gyrvsrxi1scr0w-unpack-radicle-git-metadata-0.2.0.drv'...
building '/nix/store/yfcgdrpj5ch3dlr1vk1x4qg414ss0vqv-unpack-radicle-git-ref-format-0.1.0.drv'...
building '/nix/store/i4vc1fjdgwv1kvja4s31krwp17i8hz4b-unpack-radicle-job-0.5.2.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/hkah9gp25x1ismnd1s9ap4bmzq6hcg8y-unpack-radicle-localtime-0.1.0.drv'...
building '/nix/store/b9jhylmyv12xnfn3769rs17m491riz25-unpack-radicle-oid-0.1.0.drv'...
building '/nix/store/jf0gi1d01hc42w8im4c27p51g2vfrxyn-unpack-radicle-ssh-0.10.0.drv'...
building '/nix/store/kfmjwsd8wmpg2p1w8c2hclkvkraaqhhq-unpack-radicle-std-ext-0.2.0.drv'...
building '/nix/store/145zv1grrmn135fc33c621pynl1l1k4n-unpack-radicle-surf-0.27.1.drv'...
building '/nix/store/mz9f0l4av65yk66i7swm01pzfvbgnzln-unpack-rand-0.8.6.drv'...
building '/nix/store/9z3vqcjyi310xagbm8r7rskz0svnyf7q-unpack-ref-cast-1.0.25.drv'...
building '/nix/store/pna0jhh2m093ykkqabyv3d6cnnnd529l-unpack-ref-cast-impl-1.0.25.drv'...
building '/nix/store/x65aji6w492qq9k70mha7a5pd69nh12z-unpack-regex-1.12.4.drv'...
building '/nix/store/hnisfjp3s7m2lqsxzp2172vycyyhfiq9-unpack-regex-automata-0.4.14.drv'...
building '/nix/store/8l2n6l2xbmclv7c1d4cs7zigp2ymz3b4-unpack-regex-syntax-0.8.11.drv'...
building '/nix/store/bngfi1yj8ybcxsc10c74s3cxghzr6l9w-unpack-remove_dir_all-1.0.0.drv'...
building '/nix/store/552wr6wpkkdbvbkqip6fmpsxrdjzblk2-unpack-roadmap-0.7.0.drv'...
building '/nix/store/jnq7p7ypn61z62s9a3vv6vlgzrbqgq53-unpack-rsa-0.9.10.drv'...
building '/nix/store/8qzsl8wkflfcfrcvxjznqfbw6d4bm9r2-unpack-rss-2.0.13.drv'...
building '/nix/store/8gv4nb00bgysg6rahdv2kyia3kcnsbbg-unpack-rust_decimal-1.42.1.drv'...
building '/nix/store/8w18iaffkakmdkq9wkz0qw3zh43zaasr-unpack-rustix-1.1.4.drv'...
building '/nix/store/7b5sdsqy2dy663smnmqls26rwf0mg0s8-unpack-rustversion-1.0.22.drv'...
building '/nix/store/m3gqsjj9q62v9sjn9bv9v6bk0rjxfw6m-unpack-ryu-1.0.23.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/vyqxkvj2av3jml475q1frnp4bg7p9syk-unpack-schemars-1.2.1.drv'...
building '/nix/store/ih9visdlhwqdniwg7d66sfvbldiqsk4w-unpack-schemars_derive-1.2.1.drv'...
building '/nix/store/ppigq1sp2r77m35y37qjcpv7nppzj54w-unpack-scoped-tls-1.0.1.drv'...
building '/nix/store/b4kbgr1rx3q3qvnnpv3099fj3kl07l97-unpack-serde-1.0.228.drv'...
building '/nix/store/4ngnkn9i77mf1f29dsnr5r6vhpi4f21a-unpack-serde-untagged-0.1.9.drv'...
building '/nix/store/x2rhx18hgy403h5wjzw62gk2szcmdm21-unpack-serde_core-1.0.228.drv'...
building '/nix/store/mss6vqp3dkf0yp451hmqrz9gqb0b5k9q-unpack-serde_derive-1.0.228.drv'...
building '/nix/store/nv4q1c94xd126kf7x32pyv6ja24xpk6a-unpack-serde_derive_internals-0.29.1.drv'...
building '/nix/store/yfwmwchrg1w1rzfawh2v7bxxjnd96f2b-unpack-serde_json-1.0.150.drv'...
building '/nix/store/81mqfx7kw3brd4r9b6aszfqfklcal7yd-unpack-serde_norway-0.9.42.drv'...
building '/nix/store/rqlgi3s92ykcsw4ahaprbfjbma9k4pg7-unpack-serde_path_to_error-0.1.20.drv'...
building '/nix/store/y0g37450admmg8k8w2h59gj8fd282s4y-unpack-serde_spanned-0.6.9.drv'...
building '/nix/store/ayfbqfvbah3x1agc7fbvv5m2lh3adld8-unpack-sha2-0.10.9.drv'...
building '/nix/store/cql1p04rxg6m2jm7lyy31c73i149nqr0-unpack-sha3-0.10.9.drv'...
building '/nix/store/6bi9f5vdbpixq6fvdg8lw44c9njf5g24-unpack-shell-words-1.1.1.drv'...
building '/nix/store/9myrdyzkfqz7q101m49zljpyv0zm5g6s-unpack-shlex-2.0.1.drv'...
building '/nix/store/3qqhkriwb3fjjx55v942r814f5mjc1pp-unpack-simd-adler32-0.3.9.drv'...
building '/nix/store/319l80210hk6rzvx2fz8ywz2zs7db2lq-unpack-siphasher-1.0.3.drv'...
building '/nix/store/ni7dpbqbpr1qm4vm8wbmgs2xgh00da48-unpack-slab-0.4.12.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/94r706vc1s3xqzb5g23avxzdy448r3ij-unpack-slug-0.1.6.drv'...
building '/nix/store/nqlk0289jnz11pyqna1qrimlhxchhd32-unpack-smallvec-1.15.2.drv'...
building '/nix/store/lpz1psmbiy1l29kl0z7y3xf4rzkd512y-unpack-smawk-0.3.3.drv'...
building '/nix/store/0267gjy6lnhw60fw515bg2qsrjk4zp8g-unpack-socks5-client-0.4.3.drv'...
building '/nix/store/dgz6pi1q064abav4wm0332c1y84ay7m6-unpack-sqlite-0.37.0.drv'...
building '/nix/store/5b1051yldbzdgw969qxfjglmjcgj5nv7-unpack-sqlite3-src-0.7.0.drv'...
building '/nix/store/7fsa5x2xs79cp2s37vjb0p5qwyxhknxa-unpack-sqlite3-sys-0.18.0.drv'...
building '/nix/store/kipf3mq7glcrf09wskzg4din7x3x93jx-unpack-ssh-cipher-0.2.0.drv'...
building '/nix/store/zjzzawymldnh3f7mnlm7qpndkqb51p5j-unpack-ssh-encoding-0.2.0.drv'...
building '/nix/store/xaaaw08h1419rwm8dcfxwbdl4fr5dfw9-unpack-ssh-key-0.6.7.drv'...
building '/nix/store/ipzwq8c5y9f3075214qmxd49xv7l21m8-unpack-stable_deref_trait-1.2.1.drv'...
building '/nix/store/kpiyy74fqr4nhvm9rvigy9sba796f28m-unpack-state-0.6.0.drv'...
building '/nix/store/1c106qa5y2rnb7n0d9rcbanpbhk9wkzy-unpack-subplot-0.14.0.drv'...
building '/nix/store/3my56fvihccpqf29mhcps8r00bzc380c-unpack-subplotlib-0.14.0.drv'...
building '/nix/store/wpix1d5mpsb2szig61s029fcrnigilki-unpack-subplotlib-derive-0.14.0.drv'...
building '/nix/store/bmc61cbj99z1is54kzkzh0lzpbfjl75q-unpack-syn-2.0.118.drv'...
building '/nix/store/niyqwxck6wws8hhl6mrsxrs7pwcwzkla-unpack-sync-ptr-0.1.4.drv'...
building '/nix/store/gin2pn6xmnjsjhwkfpc9f9qrnhd5sk24-unpack-synstructure-0.13.2.drv'...
building '/nix/store/saxxwp05xw3ixn7gaw668xadpw1rb748-unpack-tar-0.4.46.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/xammby11v7y7fy3ifrg92q2x8acfha7p-unpack-tempfile-3.27.0.drv'...
building '/nix/store/hlm1z7l3401hgkqfdcxb6rn1dqjjvwv5-unpack-tera-1.20.1.drv'...
building '/nix/store/yw4nrckjdf4869za1nzbkzxs9pd56saf-unpack-terminal_size-0.4.4.drv'...
building '/nix/store/qiasp54bwjidyn96nlli8knamgahnmnd-unpack-textwrap-0.16.2.drv'...
building '/nix/store/gn0n65nh2c9cs4kgns73gmf0kx8h8b3h-unpack-thiserror-2.0.18.drv'...
building '/nix/store/i54ib3h3gsg8f4xhzis5269r7r9mj1il-unpack-thiserror-impl-2.0.18.drv'...
building '/nix/store/ja6n33nzcz0b2v35k56dnsdidaxzrlw8-unpack-thread_local-1.1.9.drv'...
building '/nix/store/jlyplh2rbxc772ri4zl0py4m8vj771s1-unpack-time-0.3.53.drv'...
building '/nix/store/vv1rk6g4vfjlm1adp4scnrkdif5dc7i7-unpack-time-core-0.1.9.drv'...
building '/nix/store/5p2kqllbrwqv9xsz6p05sx5m41zg0g1f-unpack-time-macros-0.2.31.drv'...
building '/nix/store/60nnqzklq7k8yafhmv1imrkhdy3hfvdv-unpack-tinystr-0.8.3.drv'...
building '/nix/store/vh1fg7hzq5xdqaggk5q2vzzknzj0zqdh-unpack-tinyvec-1.11.0.drv'...
building '/nix/store/5jkx7azw2lqldpq6pwizy0ax5gbp9sbr-unpack-toml-0.8.23.drv'...
building '/nix/store/k8slbm4v0l7xh1kpakyh98h2qqzwf24j-unpack-toml_datetime-0.6.11.drv'...
building '/nix/store/pskafdrb1js48xvnma6v2jn7l77xb2b8-unpack-toml_edit-0.22.27.drv'...
building '/nix/store/bp3mn3f2q9jgr89a0pqngabz3qi2i9ax-unpack-toml_write-0.1.2.drv'...
building '/nix/store/0n4085mky78kbxpqv5wcj74gh8pfnji5-unpack-tracing-0.1.44.drv'...
building '/nix/store/49y180ymi7grm5zr6h53r9d3psyd4n2a-unpack-tracing-attributes-0.1.31.drv'...
building '/nix/store/1di1nm55rgalw3w71s43b3bf5aawsy8g-unpack-tracing-core-0.1.36.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/i836s65aaq41w428kxahrsfc5wdk2mi1-unpack-tracing-subscriber-0.3.23.drv'...
building '/nix/store/1pp6yjhlqs8nyqji431p6p0gayzqxq7j-unpack-typeid-1.0.3.drv'...
building '/nix/store/cs236hz4x22zy0ldh022hd8ckix97m2v-unpack-typenum-1.20.1.drv'...
building '/nix/store/bqs4f9y8kz8q28jr5k09n5qlqzalxwi8-unpack-uds_windows-1.2.1.drv'...
building '/nix/store/3jvc0bg0r60da4g97p0wff2a2kw6djm7-unpack-uncased-0.9.10.drv'...
building '/nix/store/90acj8j8q329zd3nwn8j53zv0m1v0d0b-unpack-unicase-2.9.0.drv'...
building '/nix/store/cxqpjfpiyygi061shz2qnnkpzqvmw0cd-unpack-unicode-ident-1.0.24.drv'...
building '/nix/store/6shq1pizw771ikyv94ki00x826gdf5np-unpack-unicode-linebreak-0.1.5.drv'...
building '/nix/store/il7wdg0ab7g2bphz3diprgmqin971dmn-unpack-unicode-normalization-0.1.25.drv'...
building '/nix/store/wg6kyqdda524g0z23hyaqb9wz8cycd63-unpack-unicode-segmentation-1.13.3.drv'...
building '/nix/store/h90dmgygf6iprwq8fmsa1qdhyjnb4ayl-unpack-unicode-width-0.2.2.drv'...
building '/nix/store/0zh0s97554xdjph5mmn3ggn4ckr8cw1i-unpack-universal-hash-0.5.1.drv'...
building '/nix/store/02xpnavn9yr0av87mzcw3f5aahjkc8is-unpack-unsafe-libyaml-norway-0.2.15.drv'...
building '/nix/store/iid5wzs2dfggbrikx721iwmjsyickv77-unpack-url-2.5.8.drv'...
building '/nix/store/v9jkmsjapzwrfsf3vw0mdyxsds3bwnhl-unpack-utf8-width-0.1.8.drv'...
building '/nix/store/jhra2s3cpzpnx17q47lpw09qi1k5zdh8-unpack-uuid-1.23.4.drv'...
building '/nix/store/mhvc1jgl88l5b5xzvjqyjx3xl7l3cb7a-unpack-valuable-serde-0.1.1.drv'...
building '/nix/store/nbbpiln9hgw8zx9cd3rhwd5a1l35kfl8-unpack-wasi-0.11.1+wasi-snapshot-preview1.drv'...
building '/nix/store/x9l67xi6wizg5a4viwc9dk4nninlp8bb-unpack-wasip2-1.0.4+wasi-0.2.12.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/cypag0vyd6kry97lcwcgikamj19nd1qd-unpack-wasm-bindgen-0.2.126.drv'...
building '/nix/store/7zfyznlzng7gdg4i5zrrk5fplxrlh50y-unpack-wasm-bindgen-macro-0.2.126.drv'...
building '/nix/store/wl6gxdq4smg98xsklnzla1x0mljh85ix-unpack-wasm-bindgen-macro-support-0.2.126.drv'...
building '/nix/store/vjixzmdhi7i206fifafb835jmxnpk1cb-unpack-wasm-bindgen-shared-0.2.126.drv'...
building '/nix/store/lrsn2d8kfn94dspjanan9favnsz81bsg-unpack-winapi-util-0.1.11.drv'...
building '/nix/store/wg4p94py1llpqdxk2w1sjxyirsppvy2x-unpack-windows-0.58.0.drv'...
building '/nix/store/hxd8rhn579ymxf28vslx9az86752lmim-unpack-windows-core-0.58.0.drv'...
building '/nix/store/id8l0dcl99yx7lw4nbcbvlwd1pfflrvh-unpack-windows-implement-0.58.0.drv'...
building '/nix/store/7lmc387rai4k3aq2yn3kx56l3vzv9cd3-unpack-windows-interface-0.58.0.drv'...
building '/nix/store/yj6f47cgwk2g5f7cf3ff8w9prssripsd-unpack-windows-link-0.2.1.drv'...
building '/nix/store/6kfxlw3qx5m1zfy3xczhc2m62yj6sgma-unpack-windows-sys-0.61.2.drv'...
building '/nix/store/kvidvcvggw4ik9z6wk4x4cphsybba8gc-unpack-winnow-0.7.15.drv'...
building '/nix/store/aqd04ba09w2a8ki29bjklx0s8nkk7pbh-unpack-winpipe-0.1.1.drv'...
building '/nix/store/kps8cgajz6yfqfdjxs7zlwzky09lggma-unpack-wit-bindgen-0.57.1.drv'...
building '/nix/store/rjvzlkhbsc6ybbl9q020rg0n0f4mmmv0-unpack-writeable-0.6.3.drv'...
building '/nix/store/wfvcncq2xbvxl2r9icrkiag46y7k110b-unpack-xattr-1.6.1.drv'...
building '/nix/store/6hlznmvlzxyrkrbmswq7i8swsbav937m-unpack-yaml-rust2-0.10.4.drv'...
building '/nix/store/w4mww0kdc64jsg8srzl9dcdjg4v3x1bg-unpack-yaml-rust2-0.9.0.drv'...
building '/nix/store/2vh5bn390kif3v4979zirrnkvhhvga4b-unpack-yansi-1.0.1.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/vkbsbvghd5ljrqj265gmdpv347lvfbr4-unpack-yoke-0.8.3.drv'...
building '/nix/store/sqpmc98g8nrinbw6lfqpwzhvv58fgza2-unpack-yoke-derive-0.8.2.drv'...
building '/nix/store/xd1h95chav0aayfspk9wf1wh0bk6b2cg-unpack-zerocopy-0.8.52.drv'...
building '/nix/store/pki7h8zlhw6z8m63ybc2dvqfv3hs1f5i-unpack-zerocopy-derive-0.8.52.drv'...
building '/nix/store/2dknb17x0r3lnlgwh872nj8hc09r4p08-unpack-zerofrom-0.1.8.drv'...
building '/nix/store/jlpslyyrx5p918b5qg6slf784h1wyirl-unpack-zerofrom-derive-0.1.7.drv'...
building '/nix/store/zc2bwb9wix8chkpdqy2c1dvr95rj4vxh-unpack-zeroize-1.9.0.drv'...
building '/nix/store/bcdlkb1wkqmf29b1fsh9lilwxbhsnr0a-unpack-zerotrie-0.2.4.drv'...
building '/nix/store/pvnzm1fgag0410yxn7gf6b8ic3wiqq9n-unpack-zerovec-0.11.6.drv'...
building '/nix/store/2z2pddn6rg0j472mzr0zh8a630fa3898-unpack-zerovec-derive-0.11.3.drv'...
building '/nix/store/j84jacqj1d03z507hs7vqzcg6yd22dvs-unpack-zmij-1.0.21.drv'...
building '/nix/store/xmdll9v9m4c9dah06yvdi3v5insnws8c-user-generators.drv'...
building '/nix/store/1sgy0bi9vcv2xk5bmflpnvy59cskj6am-user-units.drv'...
building '/nix/store/srrh9xx6sf6h4dwngkfkjjkh2s6fxs4x-user-units.drv'...
building '/nix/store/hlswgrlv98riiyyif1wgmlqkan1qbyif-crates-io-dependencies.drv'...
building '/nix/store/byf36mzz5hkgp91yj1iax4gs5gggpzvd-etc.drv'...
building '/nix/store/h3zxd7hkg807y40glv0s2ia23kasgp6r-activate.drv'...
building '/nix/store/1x91zd3v01syqkny2lmi0g2lhralrw95-nixos-system-alice-test.drv'...
nixos-system-alice-test> structuredAttrs is enabled
building '/nix/store/j1bw68xv004ym14svpnscg5bykq45mzn-closure-info.drv'...
building '/nix/store/40aja02dirz0ip58qs9blix0k366n0x0-config.drv'...
closure-info> structuredAttrs is enabled
building '/nix/store/lk5rgd71bv27wl8070szjlr77hdgzal0-run-nixos-vm.drv'...
config> structuredAttrs is enabled
building '/nix/store/z4la5z9dmssgqz063xlkdyxhi2mwhnkx-radicle-devcontainer-ci-deps-0.1.0.drv'...
building '/nix/store/dbdmkzakvcb2s4jals80s2klwkryjqwy-nixos-vm.drv'...
radicle-devcontainer-ci-deps> Running phase: unpackPhase
radicle-devcontainer-ci-deps> unpacking source archive /nix/store/nz9c6s3sv0hbxmygb9kjn98hjqyv9w6b-dummy-src
radicle-devcontainer-ci-deps> source root is dummy-src
radicle-devcontainer-ci-deps> Running phase: patchPhase
radicle-devcontainer-ci-deps> Running phase: updateAutotoolsGnuConfigScriptsPhase
radicle-devcontainer-ci-deps> Running phase: configurePhase
radicle-devcontainer-ci-deps> [naersk] cargo_version (read): 1.95.0 (f2d3ce0bd 2026-03-21)
radicle-devcontainer-ci-deps> [naersk] cargo_message_format (set): json-diagnostic-rendered-ansi
radicle-devcontainer-ci-deps> [naersk] cargo_release: --release
radicle-devcontainer-ci-deps> [naersk] cargo_options:
radicle-devcontainer-ci-deps> [naersk] cargo_build_options: $cargo_release -j "$NIX_BUILD_CORES" --message-format=$cargo_message_format
radicle-devcontainer-ci-deps> [naersk] cargo_test_options: $cargo_release -j "$NIX_BUILD_CORES"
radicle-devcontainer-ci-deps> [naersk] RUST_TEST_THREADS: 20
radicle-devcontainer-ci-deps> [naersk] cargo_bins_jq_filter: .
radicle-devcontainer-ci-deps> [naersk] cargo_build_output_json (created): /nix/var/nix/builds/nix-2988-2689899696/tmp.AYezIScqBE
radicle-devcontainer-ci-deps> [naersk] RUSTFLAGS:
radicle-devcontainer-ci-deps> [naersk] CARGO_BUILD_RUSTFLAGS:
radicle-devcontainer-ci-deps> [naersk] CARGO_BUILD_RUSTFLAGS (updated): --remap-path-prefix /nix/store/8p698wy91kg3538fqb93aza0hm7glqp4-crates-io-dependencies=/sources --remap-path-prefix /nix/store/nxmahqfll81sfi3x7az73i0vqdwii0b5-git-dependencies=/sources
radicle-devcontainer-ci-deps> Running phase: buildPhase
radicle-devcontainer-ci-deps> cargo build $cargo_release -j "$NIX_BUILD_CORES" --message-format=$cargo_message_format
radicle-devcontainer-ci-deps> Compiling proc-macro2 v1.0.106
radicle-devcontainer-ci-deps> Compiling quote v1.0.46
radicle-devcontainer-ci-deps> Compiling unicode-ident v1.0.24
radicle-devcontainer-ci-deps> Compiling version_check v0.9.5
radicle-devcontainer-ci-deps> Compiling libc v0.2.186
radicle-devcontainer-ci-deps> Compiling cfg-if v1.0.4
radicle-devcontainer-ci-deps> Compiling serde_core v1.0.228
radicle-devcontainer-ci-deps> Compiling typenum v1.20.1
radicle-devcontainer-ci-deps> Compiling serde v1.0.228
radicle-devcontainer-ci-deps> Compiling shlex v2.0.1
radicle-devcontainer-ci-deps> Compiling find-msvc-tools v0.1.9
radicle-devcontainer-ci-deps> Compiling subtle v2.6.1
radicle-devcontainer-ci-deps> Compiling memchr v2.8.2
radicle-devcontainer-ci-deps> Compiling stable_deref_trait v1.2.1
radicle-devcontainer-ci-deps> Compiling pkg-config v0.3.33
radicle-devcontainer-ci-deps> Compiling bitflags v2.13.0
radicle-devcontainer-ci-deps> Compiling thiserror v1.0.69
radicle-devcontainer-ci-deps> Compiling cpufeatures v0.2.17
radicle-devcontainer-ci-deps> Compiling zmij v1.0.21
radicle-devcontainer-ci-deps> Compiling thiserror v2.0.18
radicle-devcontainer-ci-deps> Compiling crossbeam-utils v0.8.21
radicle-devcontainer-ci-deps> Compiling litemap v0.8.2
radicle-devcontainer-ci-deps> Compiling writeable v0.6.3
radicle-devcontainer-ci-deps> Compiling zerocopy v0.8.52
radicle-devcontainer-ci-deps> Compiling generic-array v0.14.7
radicle-devcontainer-ci-deps> Compiling utf8_iter v1.0.4
radicle-devcontainer-ci-deps> Compiling icu_properties_data v2.2.0
radicle-devcontainer-ci-deps> Compiling syn v1.0.109
radicle-devcontainer-ci-deps> Compiling icu_normalizer_data v2.2.0
radicle-devcontainer-ci-deps> Compiling hashbrown v0.17.1
radicle-devcontainer-ci-deps> Compiling getrandom v0.4.3
radicle-devcontainer-ci-deps> Compiling vcpkg v0.2.15
radicle-devcontainer-ci-deps> Compiling equivalent v1.0.2
radicle-devcontainer-ci-deps> Compiling anyhow v1.0.103
radicle-devcontainer-ci-deps> Compiling smallvec v1.15.2
radicle-devcontainer-ci-deps> Compiling once_cell v1.21.4
radicle-devcontainer-ci-deps> Compiling rustix v1.1.4
radicle-devcontainer-ci-deps> Compiling percent-encoding v2.3.2
radicle-devcontainer-ci-deps> Compiling linux-raw-sys v0.12.1
radicle-devcontainer-ci-deps> Compiling autocfg v1.5.1
radicle-devcontainer-ci-deps> Compiling libm v0.2.16
radicle-devcontainer-ci-deps> Compiling signature v1.6.4
radicle-devcontainer-ci-deps> Compiling opaque-debug v0.3.1
radicle-devcontainer-ci-deps> Compiling ed25519 v1.5.3
radicle-devcontainer-ci-deps> Compiling ahash v0.8.12
radicle-devcontainer-ci-deps> Compiling itoa v1.0.18
radicle-devcontainer-ci-deps> Compiling log v0.4.33
radicle-devcontainer-ci-deps> Compiling amplify_num v0.5.4
radicle-devcontainer-ci-deps> Compiling ct-codecs v1.1.7
radicle-devcontainer-ci-deps> Compiling cfg_aliases v0.2.1
radicle-devcontainer-ci-deps> Compiling ascii v1.1.0
radicle-devcontainer-ci-deps> Compiling form_urlencoded v1.2.2
radicle-devcontainer-ci-deps> Compiling num-traits v0.2.19
radicle-devcontainer-ci-deps> Compiling syn v2.0.118
radicle-devcontainer-ci-deps> Compiling aho-corasick v1.1.4
radicle-devcontainer-ci-deps> Compiling regex-syntax v0.8.11
radicle-devcontainer-ci-deps> Compiling keccak v0.1.6
radicle-devcontainer-ci-deps> Compiling unicase v2.9.0
radicle-devcontainer-ci-deps> Compiling same-file v1.0.6
radicle-devcontainer-ci-deps> Compiling base64ct v1.8.3
radicle-devcontainer-ci-deps> Compiling walkdir v2.5.0
radicle-devcontainer-ci-deps> Compiling crypto-common v0.1.7
radicle-devcontainer-ci-deps> Compiling block-padding v0.3.3
radicle-devcontainer-ci-deps> Compiling block-buffer v0.10.4
radicle-devcontainer-ci-deps> Compiling universal-hash v0.5.1
radicle-devcontainer-ci-deps> Compiling aead v0.5.2
radicle-devcontainer-ci-deps> Compiling digest v0.10.7
radicle-devcontainer-ci-deps> Compiling jobserver v0.1.34
radicle-devcontainer-ci-deps> Compiling inout v0.1.4
radicle-devcontainer-ci-deps> Compiling polyval v0.6.2
radicle-devcontainer-ci-deps> Compiling pem-rfc7468 v0.7.0
radicle-devcontainer-ci-deps> Compiling cipher v0.4.4
radicle-devcontainer-ci-deps> Compiling encoding_rs v0.8.35
radicle-devcontainer-ci-deps> Compiling cc v1.2.65
radicle-devcontainer-ci-deps> Compiling sha2 v0.10.9
radicle-devcontainer-ci-deps> Compiling sha3 v0.10.9
radicle-devcontainer-ci-deps> Compiling aes v0.8.4
radicle-devcontainer-ci-deps> Compiling ctr v0.9.2
radicle-devcontainer-ci-deps> Compiling ghash v0.5.1
radicle-devcontainer-ci-deps> Compiling data-encoding v2.11.0
radicle-devcontainer-ci-deps> Compiling serde_json v1.0.150
radicle-devcontainer-ci-deps> Compiling strsim v0.11.1
radicle-devcontainer-ci-deps> Compiling arraydeque v0.5.1
radicle-devcontainer-ci-deps> Compiling getrandom v0.2.17
radicle-devcontainer-ci-deps> Compiling fnv v1.0.7
radicle-devcontainer-ci-deps> Compiling fastrand v2.4.1
radicle-devcontainer-ci-deps> Compiling base32 v0.4.0
radicle-devcontainer-ci-deps> Compiling ucd-trie v0.1.7
radicle-devcontainer-ci-deps> Compiling ident_case v1.0.1
radicle-devcontainer-ci-deps> Compiling ec25519 v0.1.0
radicle-devcontainer-ci-deps> Compiling rand_core v0.6.4
radicle-devcontainer-ci-deps> Compiling doc-comment v0.3.4
radicle-devcontainer-ci-deps> Compiling byteorder v1.5.0
radicle-devcontainer-ci-deps> Compiling pest v2.8.6
radicle-devcontainer-ci-deps> Compiling aes-gcm v0.10.3
radicle-devcontainer-ci-deps> Compiling ssh-encoding v0.2.0
radicle-devcontainer-ci-deps> Compiling amplify_syn v2.0.1
radicle-devcontainer-ci-deps> Compiling regex-automata v0.4.14
radicle-devcontainer-ci-deps> Compiling blowfish v0.9.1
radicle-devcontainer-ci-deps> Compiling indexmap v2.14.0
radicle-devcontainer-ci-deps> Compiling crossbeam-epoch v0.9.18
radicle-devcontainer-ci-deps> Compiling cbc v0.1.2
radicle-devcontainer-ci-deps> Compiling chacha20 v0.9.1
radicle-devcontainer-ci-deps> Compiling pbkdf2 v0.12.2
radicle-devcontainer-ci-deps> Compiling poly1305 v0.8.0
radicle-devcontainer-ci-deps> Compiling libz-sys v1.1.29
radicle-devcontainer-ci-deps> Compiling libgit2-sys v0.18.5+1.9.4
radicle-devcontainer-ci-deps> Compiling sqlite3-src v0.7.0
radicle-devcontainer-ci-deps> Compiling bstr v1.12.3
radicle-devcontainer-ci-deps> Compiling const-str v0.4.3
radicle-devcontainer-ci-deps> Compiling zeroize v1.9.0
radicle-devcontainer-ci-deps> Compiling unicode-width v0.2.2
radicle-devcontainer-ci-deps> Compiling foldhash v0.1.5
radicle-devcontainer-ci-deps> Compiling hashbrown v0.15.5
radicle-devcontainer-ci-deps> Compiling ssh-cipher v0.2.0
radicle-devcontainer-ci-deps> Compiling serde_path_to_error v0.1.20
radicle-devcontainer-ci-deps> Compiling amplify_derive v4.0.1
radicle-devcontainer-ci-deps> Compiling crossbeam-deque v0.8.6
radicle-devcontainer-ci-deps> Compiling pest_meta v2.8.6
radicle-devcontainer-ci-deps> Compiling bcrypt-pbkdf v0.10.0
radicle-devcontainer-ci-deps> Compiling rand v0.8.6
radicle-devcontainer-ci-deps> Compiling typeid v1.0.3
radicle-devcontainer-ci-deps> Compiling ref-cast v1.0.25
radicle-devcontainer-ci-deps> Compiling base-x v0.2.11
radicle-devcontainer-ci-deps> Compiling signature v2.2.0
radicle-devcontainer-ci-deps> Compiling crc32fast v1.5.0
radicle-devcontainer-ci-deps> Compiling ppv-lite86 v0.2.21
radicle-devcontainer-ci-deps> Compiling base45 v3.2.0
radicle-devcontainer-ci-deps> Compiling hashlink v0.10.0
radicle-devcontainer-ci-deps> Compiling hashbrown v0.14.5
radicle-devcontainer-ci-deps> Compiling ssh-key v0.6.7
radicle-devcontainer-ci-deps> Compiling pikchr v0.1.4
radicle-devcontainer-ci-deps> Compiling rand_chacha v0.3.1
radicle-devcontainer-ci-deps> Compiling chrono v0.4.45
radicle-devcontainer-ci-deps> Compiling qcheck v1.0.0
radicle-devcontainer-ci-deps> Compiling proc-macro-error-attr2 v2.0.0
radicle-devcontainer-ci-deps> Compiling nix v0.29.0
radicle-devcontainer-ci-deps> Compiling hashlink v0.9.1
radicle-devcontainer-ci-deps> Compiling smawk v0.3.3
radicle-devcontainer-ci-deps> Compiling erased-serde v0.4.10
radicle-devcontainer-ci-deps> Compiling pulldown-cmark v0.13.4
radicle-devcontainer-ci-deps> Compiling globset v0.4.18
radicle-devcontainer-ci-deps> Compiling yaml-rust2 v0.9.0
radicle-devcontainer-ci-deps> Compiling unicode-linebreak v0.1.5
radicle-devcontainer-ci-deps> Compiling ignore v0.4.27
radicle-devcontainer-ci-deps> Compiling synstructure v0.13.2
radicle-devcontainer-ci-deps> Compiling darling_core v0.20.11
radicle-devcontainer-ci-deps> Compiling serde_derive_internals v0.29.1
radicle-devcontainer-ci-deps> Compiling pest_generator v2.8.6
radicle-devcontainer-ci-deps> Compiling amplify v4.9.0
radicle-devcontainer-ci-deps> Compiling simd-adler32 v0.3.9
radicle-devcontainer-ci-deps> Compiling utf8parse v0.2.2
radicle-devcontainer-ci-deps> Compiling deunicode v1.6.2
radicle-devcontainer-ci-deps> Compiling adler2 v2.0.1
radicle-devcontainer-ci-deps> Compiling slug v0.1.6
radicle-devcontainer-ci-deps> Compiling miniz_oxide v0.8.9
radicle-devcontainer-ci-deps> Compiling anstyle-parse v1.0.0
radicle-devcontainer-ci-deps> Compiling cyphergraphy v0.3.0
radicle-devcontainer-ci-deps> Compiling globwalk v0.9.1
radicle-devcontainer-ci-deps> Compiling textwrap v0.16.2
radicle-devcontainer-ci-deps> Compiling proc-macro-error2 v2.0.1
radicle-devcontainer-ci-deps> Compiling cypheraddr v0.4.1
radicle-devcontainer-ci-deps> Compiling humansize v2.1.3
radicle-devcontainer-ci-deps> Compiling tempfile v3.27.0
radicle-devcontainer-ci-deps> Compiling regex v1.12.4
radicle-devcontainer-ci-deps> Compiling yaml-rust2 v0.10.4
radicle-devcontainer-ci-deps> Compiling socks5-client v0.4.3
radicle-devcontainer-ci-deps> Compiling getopts v0.2.24
radicle-devcontainer-ci-deps> Compiling xattr v1.6.1
radicle-devcontainer-ci-deps> Compiling subplot v0.14.0
radicle-devcontainer-ci-deps> Compiling cyphernet v0.5.3
radicle-devcontainer-ci-deps> Compiling filetime v0.2.29
radicle-devcontainer-ci-deps> Compiling tracing-core v0.1.36
radicle-devcontainer-ci-deps> Compiling proc-macro2-diagnostics v0.10.1
radicle-devcontainer-ci-deps> Compiling utf8-width v0.1.8
radicle-devcontainer-ci-deps> Compiling colorchoice v1.0.5
radicle-devcontainer-ci-deps> Compiling lazy_static v1.5.0
radicle-devcontainer-ci-deps> Compiling num-conv v0.2.2
radicle-devcontainer-ci-deps> Compiling time-core v0.1.9
radicle-devcontainer-ci-deps> Compiling pin-project-lite v0.2.17
radicle-devcontainer-ci-deps> Compiling dyn-clone v1.0.20
radicle-devcontainer-ci-deps> Compiling anstyle v1.0.14
radicle-devcontainer-ci-deps> Compiling serde_derive v1.0.228
radicle-devcontainer-ci-deps> Compiling zerofrom-derive v0.1.7
radicle-devcontainer-ci-deps> Compiling yoke-derive v0.8.2
radicle-devcontainer-ci-deps> Compiling zerovec-derive v0.11.3
radicle-devcontainer-ci-deps> Compiling displaydoc v0.2.6
radicle-devcontainer-ci-deps> Compiling thiserror-impl v1.0.69
radicle-devcontainer-ci-deps> Compiling thiserror-impl v2.0.18
radicle-devcontainer-ci-deps> Compiling match-lookup v0.1.2
radicle-devcontainer-ci-deps> Compiling data-encoding-macro-internal v0.1.18
radicle-devcontainer-ci-deps> Compiling tracing-attributes v0.1.31
radicle-devcontainer-ci-deps> Compiling ref-cast-impl v1.0.25
radicle-devcontainer-ci-deps> Compiling schemars_derive v1.2.1
radicle-devcontainer-ci-deps> Compiling culpa-macros v1.0.2
radicle-devcontainer-ci-deps> Compiling base256emoji v1.0.2
radicle-devcontainer-ci-deps> Compiling data-encoding-macro v0.1.20
radicle-devcontainer-ci-deps> Compiling multibase v0.9.3
radicle-devcontainer-ci-deps> Compiling pest_derive v2.8.6
radicle-devcontainer-ci-deps> Compiling darling_macro v0.20.11
radicle-devcontainer-ci-deps> Compiling is_terminal_polyfill v1.70.2
radicle-devcontainer-ci-deps> Compiling anstyle-query v1.1.5
radicle-devcontainer-ci-deps> Compiling unicode-segmentation v1.13.3
radicle-devcontainer-ci-deps> Compiling pulldown-cmark-escape v0.11.0
radicle-devcontainer-ci-deps> Compiling winnow v0.7.15
radicle-devcontainer-ci-deps> Compiling tinyvec_macros v0.1.1
radicle-devcontainer-ci-deps> Compiling tinyvec v1.11.0
radicle-devcontainer-ci-deps> Compiling anstream v1.0.0
radicle-devcontainer-ci-deps> Compiling time-macros v0.2.31
radicle-devcontainer-ci-deps> Compiling darling v0.20.11
radicle-devcontainer-ci-deps> Compiling html-escape v0.2.13
radicle-devcontainer-ci-deps> Compiling derive_builder_core v0.20.2
radicle-devcontainer-ci-deps> Compiling zerofrom v0.1.8
radicle-devcontainer-ci-deps> Compiling yoke v0.8.3
radicle-devcontainer-ci-deps> Compiling radicle-git-metadata v0.1.0
radicle-devcontainer-ci-deps> Compiling radicle-ssh v0.10.0
radicle-devcontainer-ci-deps> Compiling git-ref-format-core v0.6.0
radicle-devcontainer-ci-deps> Compiling tracing v0.1.44
radicle-devcontainer-ci-deps> Compiling zerovec v0.11.6
radicle-devcontainer-ci-deps> Compiling zerotrie v0.2.4
radicle-devcontainer-ci-deps> Compiling tar v0.4.46
radicle-devcontainer-ci-deps> Compiling flate2 v1.1.9
radicle-devcontainer-ci-deps> Compiling git-ref-format-macro v0.6.0
radicle-devcontainer-ci-deps> Compiling terminal_size v0.4.4
radicle-devcontainer-ci-deps> Compiling derive_builder_macro v0.20.2
radicle-devcontainer-ci-deps> Compiling radicle-dag v0.10.0
radicle-devcontainer-ci-deps> Compiling tinystr v0.8.3
radicle-devcontainer-ci-deps> Compiling potential_utf v0.1.5
radicle-devcontainer-ci-deps> Compiling mime_guess v2.0.5
radicle-devcontainer-ci-deps> Compiling icu_locale_core v2.2.0
radicle-devcontainer-ci-deps> Compiling icu_collections v2.2.0
radicle-devcontainer-ci-deps> Compiling cvt v0.1.2
radicle-devcontainer-ci-deps> Compiling base64 v0.22.1
radicle-devcontainer-ci-deps> Compiling clap_lex v1.1.0
radicle-devcontainer-ci-deps> Compiling ryu v1.0.23
radicle-devcontainer-ci-deps> Compiling heck v0.5.0
radicle-devcontainer-ci-deps> Compiling rust_decimal v1.42.1
radicle-devcontainer-ci-deps> Compiling yansi v1.0.1
radicle-devcontainer-ci-deps> Compiling descape v3.0.0
radicle-devcontainer-ci-deps> Compiling minimal-lexical v0.2.1
radicle-devcontainer-ci-deps> Compiling deranged v0.5.8
radicle-devcontainer-ci-deps> Compiling line-col v0.2.1
radicle-devcontainer-ci-deps> Compiling powerfmt v0.2.0
radicle-devcontainer-ci-deps> Compiling base64 v0.21.7
radicle-devcontainer-ci-deps> Compiling nom v7.1.3
radicle-devcontainer-ci-deps> Compiling clap_derive v4.6.1
radicle-devcontainer-ci-deps> Compiling derive_builder v0.20.2
radicle-devcontainer-ci-deps> Compiling clap_builder v4.6.0
radicle-devcontainer-ci-deps> Compiling radicle-surf v0.27.1
radicle-devcontainer-ci-deps> Compiling serde-untagged v0.1.9
radicle-devcontainer-ci-deps> Compiling crossbeam-channel v0.5.15
radicle-devcontainer-ci-deps> Compiling icu_provider v2.2.0
radicle-devcontainer-ci-deps> Compiling fs_at v0.2.1
radicle-devcontainer-ci-deps> Compiling quick-xml v0.39.4
radicle-devcontainer-ci-deps> Compiling culpa v1.0.2
radicle-devcontainer-ci-deps> Compiling radicle-git-metadata v0.2.0
radicle-devcontainer-ci-deps> Compiling icu_properties v2.2.0
radicle-devcontainer-ci-deps> Compiling icu_normalizer v2.2.0
radicle-devcontainer-ci-deps> Compiling unicode-normalization v0.1.25
radicle-devcontainer-ci-deps> Compiling diligent-date-parser v0.1.5
radicle-devcontainer-ci-deps> Compiling time v0.3.53
radicle-devcontainer-ci-deps> Compiling nonempty v0.9.0
radicle-devcontainer-ci-deps> Compiling schemars v1.2.1
radicle-devcontainer-ci-deps> Compiling serde_spanned v0.6.9
radicle-devcontainer-ci-deps> Compiling toml_datetime v0.6.11
radicle-devcontainer-ci-deps> Compiling marked-yaml v0.7.2
radicle-devcontainer-ci-deps> Compiling marked-yaml v0.8.0
radicle-devcontainer-ci-deps> Compiling tera v1.20.1
radicle-devcontainer-ci-deps> Compiling radicle-localtime v0.1.0
radicle-devcontainer-ci-deps> Compiling radicle-git-ref-format v0.1.0
radicle-devcontainer-ci-deps> Compiling git-ref-format v0.6.0
radicle-devcontainer-ci-deps> Compiling bytesize v2.4.0
radicle-devcontainer-ci-deps> Compiling nix v0.31.3
radicle-devcontainer-ci-deps> Compiling idna_adapter v1.2.2
radicle-devcontainer-ci-deps> Compiling idna v1.1.0
radicle-devcontainer-ci-deps> Compiling roadmap v0.7.0
radicle-devcontainer-ci-deps> Compiling uncased v0.9.10
radicle-devcontainer-ci-deps> Compiling fast-glob v0.3.3
radicle-devcontainer-ci-deps> Compiling radicle-std-ext v0.2.0
radicle-devcontainer-ci-deps> Compiling mime v0.3.17
radicle-devcontainer-ci-deps> Compiling url v2.5.8
radicle-devcontainer-ci-deps> Compiling toml_write v0.1.2
radicle-devcontainer-ci-deps> Compiling dunce v1.0.5
radicle-devcontainer-ci-deps> Compiling subplotlib v0.14.0
radicle-devcontainer-ci-deps> Compiling arrayvec v0.7.7
radicle-devcontainer-ci-deps> Compiling siphasher v1.0.3
radicle-devcontainer-ci-deps> Compiling normpath v1.5.1
radicle-devcontainer-ci-deps> Compiling toml_edit v0.22.27
radicle-devcontainer-ci-deps> Compiling remove_dir_all v1.0.0
radicle-devcontainer-ci-deps> Compiling askama_parser v0.2.1
radicle-devcontainer-ci-deps> Compiling matchers v0.2.0
radicle-devcontainer-ci-deps> Compiling basic-toml v0.1.10
radicle-devcontainer-ci-deps> Compiling tracing-serde v0.2.0
radicle-devcontainer-ci-deps> Compiling atom_syndication v0.12.8
radicle-devcontainer-ci-deps> Compiling clap v4.6.1
radicle-devcontainer-ci-deps> Compiling pear_codegen v0.2.9
radicle-devcontainer-ci-deps> Compiling sharded-slab v0.1.7
radicle-devcontainer-ci-deps> Compiling tracing-log v0.2.0
radicle-devcontainer-ci-deps> Compiling uuid v1.23.4
radicle-devcontainer-ci-deps> Compiling fs2 v0.4.3
radicle-devcontainer-ci-deps> Compiling figment v0.10.19
radicle-devcontainer-ci-deps> Compiling thread_local v1.1.9
radicle-devcontainer-ci-deps> Compiling state v0.6.0
radicle-devcontainer-ci-deps> Compiling shell-words v1.1.1
radicle-devcontainer-ci-deps> Compiling unsafe-libyaml v0.2.11
radicle-devcontainer-ci-deps> Compiling inlinable_string v0.1.15
radicle-devcontainer-ci-deps> Compiling nonempty v0.11.0
radicle-devcontainer-ci-deps> Compiling radicle-ci-broker v0.29.0
radicle-devcontainer-ci-deps> Compiling unsafe-libyaml-norway v0.2.15
radicle-devcontainer-ci-deps> Compiling nu-ansi-term v0.50.3
radicle-devcontainer-ci-deps> Compiling askama_derive v0.12.5
radicle-devcontainer-ci-deps> Compiling toml v0.8.23
radicle-devcontainer-ci-deps> Compiling duration-str v0.21.0
radicle-devcontainer-ci-deps> Compiling rss v2.0.13
radicle-devcontainer-ci-deps> Compiling tracing-subscriber v0.3.23
radicle-devcontainer-ci-deps> Compiling pear v0.2.9
radicle-devcontainer-ci-deps> Compiling html-page v0.5.0
radicle-devcontainer-ci-deps> Compiling serde_yaml v0.9.34+deprecated
radicle-devcontainer-ci-deps> Compiling serde_norway v0.9.42
radicle-devcontainer-ci-deps> Compiling nonempty v0.12.0
radicle-devcontainer-ci-deps> Compiling askama_escape v0.10.3
radicle-devcontainer-ci-deps> Compiling radicle-devcontainer-ci v0.1.0 (/nix/var/nix/builds/nix-2988-2689899696/dummy-src)
radicle-devcontainer-ci-deps> Compiling ctrlc v3.5.2
radicle-devcontainer-ci-deps> Compiling subplotlib-derive v0.14.0
radicle-devcontainer-ci-deps> Compiling askama v0.12.1
radicle-devcontainer-ci-deps> Compiling git2 v0.20.4
radicle-devcontainer-ci-deps> Compiling radicle-oid v0.1.0
radicle-devcontainer-ci-deps> Compiling radicle-git-ext v0.12.0
radicle-devcontainer-ci-deps> Compiling sqlite3-sys v0.18.0
radicle-devcontainer-ci-deps> Compiling sqlite v0.37.0
radicle-devcontainer-ci-deps> Compiling radicle-crypto v0.16.0
radicle-devcontainer-ci-deps> Compiling radicle-cob v0.19.0
radicle-devcontainer-ci-deps> Compiling radicle-core v0.2.0
radicle-devcontainer-ci-deps> Compiling radicle v0.22.1
radicle-devcontainer-ci-deps> Compiling radicle-job v0.5.2
radicle-devcontainer-ci-deps> Finished `release` profile [optimized] target(s) in 1m 10s
radicle-devcontainer-ci-deps> buildPhase completed in 1 minutes 11 seconds
radicle-devcontainer-ci-deps> Running phase: installPhase
radicle-devcontainer-ci-deps> /*stdin*\ : 25.04% ( 784 MiB => 196 MiB, /nix/store/xavnm65zz74izifrzqbndz2l5hnbnhac-radicle-devcontainer-ci-deps-0.1.0/target.tar.zst)
radicle-devcontainer-ci-deps> Running phase: fixupPhase
radicle-devcontainer-ci-deps> shrinking RPATHs of ELF executables and libraries in /nix/store/xavnm65zz74izifrzqbndz2l5hnbnhac-radicle-devcontainer-ci-deps-0.1.0
radicle-devcontainer-ci-deps> checking for references to /nix/var/nix/builds/nix-2988-2689899696/ in /nix/store/xavnm65zz74izifrzqbndz2l5hnbnhac-radicle-devcontainer-ci-deps-0.1.0...
radicle-devcontainer-ci-deps> patching script interpreter paths in /nix/store/xavnm65zz74izifrzqbndz2l5hnbnhac-radicle-devcontainer-ci-deps-0.1.0
building '/nix/store/vv5s43q1plpfvigcck02sd2dns2m8myv-radicle-devcontainer-ci-0.1.0.drv'...
radicle-devcontainer-ci> Running phase: unpackPhase
radicle-devcontainer-ci> unpacking source archive /nix/store/m3r6yk32bq08r0ji0h7g7kyqazklyb4f-source
radicle-devcontainer-ci> source root is source
radicle-devcontainer-ci> Running phase: patchPhase
radicle-devcontainer-ci> Running phase: updateAutotoolsGnuConfigScriptsPhase
radicle-devcontainer-ci> Running phase: configurePhase
radicle-devcontainer-ci> [naersk] cargo_version (read): 1.95.0 (f2d3ce0bd 2026-03-21)
radicle-devcontainer-ci> [naersk] cargo_message_format (set): json-diagnostic-rendered-ansi
radicle-devcontainer-ci> [naersk] cargo_release: --release
radicle-devcontainer-ci> [naersk] cargo_options:
radicle-devcontainer-ci> [naersk] cargo_build_options: $cargo_release -j "$NIX_BUILD_CORES" --message-format=$cargo_message_format
radicle-devcontainer-ci> [naersk] cargo_test_options: $cargo_release -j "$NIX_BUILD_CORES"
radicle-devcontainer-ci> [naersk] RUST_TEST_THREADS: 20
radicle-devcontainer-ci> [naersk] cargo_bins_jq_filter: select(.reason == "compiler-artifact" and .executable != null and .profile.test == false)
radicle-devcontainer-ci> [naersk] cargo_build_output_json (created): /nix/var/nix/builds/nix-2988-2689899698/tmp.feg06XUSbj
radicle-devcontainer-ci> [naersk] RUSTFLAGS:
radicle-devcontainer-ci> [naersk] CARGO_BUILD_RUSTFLAGS:
radicle-devcontainer-ci> [naersk] CARGO_BUILD_RUSTFLAGS (updated): --remap-path-prefix /nix/store/8p698wy91kg3538fqb93aza0hm7glqp4-crates-io-dependencies=/sources --remap-path-prefix /nix/store/nxmahqfll81sfi3x7az73i0vqdwii0b5-git-dependencies=/sources
radicle-devcontainer-ci> [naersk] pre-installing dep /nix/store/xavnm65zz74izifrzqbndz2l5hnbnhac-radicle-devcontainer-ci-deps-0.1.0
radicle-devcontainer-ci> Running phase: buildPhase
radicle-devcontainer-ci> cargo build $cargo_release -j "$NIX_BUILD_CORES" --message-format=$cargo_message_format
radicle-devcontainer-ci> Compiling radicle-devcontainer-ci v0.1.0 (/nix/var/nix/builds/nix-2988-2689899698/source)
radicle-devcontainer-ci> Finished `release` profile [optimized] target(s) in 4.87s
radicle-devcontainer-ci> Running phase: installPhase
radicle-devcontainer-ci> [naersk] Using file /nix/var/nix/builds/nix-2988-2689899698/tmp.feg06XUSbj to retrieve build (executable) products
radicle-devcontainer-ci> [naersk] found executable radicle-devcontainer-ci -> /nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci
radicle-devcontainer-ci> Running phase: fixupPhase
radicle-devcontainer-ci> shrinking RPATHs of ELF executables and libraries in /nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0
radicle-devcontainer-ci> shrinking /nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci
radicle-devcontainer-ci> checking for references to /nix/var/nix/builds/nix-2988-2689899698/ in /nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0...
radicle-devcontainer-ci> patching script interpreter paths in /nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0
radicle-devcontainer-ci> stripping (with command strip and flags -S -p) in /nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin
building '/nix/store/7dn0nzbjw7c8kf440qbajz0z21i3xa56-ci-broker.json.drv'...
building '/nix/store/znpqll8qdcl83m9k94xfkwndw3708yhm-unit-radicle-devcontainer-ci-cleanup-devcontainer.service.drv'...
ci-broker.json> structuredAttrs is enabled
building '/nix/store/imf40ynccxdz7whvxhdd60q4hk8pc6pr-ci-broker.json.drv'...
ci-broker.json> {"timestamp":"2026-07-07T15:55:12.775018Z","level":"INFO","fields":{"message":"CI broker starts","msg_id":"CibStart","kind":"startup","version":"0.29.0@160fd77"}}
ci-broker.json> {"timestamp":"2026-07-07T15:55:12.775695Z","level":"DEBUG","fields":{"message":"loaded configuration","msg_id":"CibConfig","kind":"startup","config":"Config { default_adapter: None, triggers: Some([TriggerConfig { adapter: \"devcontainer\", filters: [And([HasFile(\".radicle/devcontainer-ci.yaml\"), DefaultBranch])] }]), report_dir: Some(\"/var/lib/radicle-ci/reports\"), db: \"/var/lib/radicle-ci/ci-broker.db\", status_update_interval_seconds: None, adapters: {\"devcontainer\": AdapterSpec { command: \"/nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci\", env: {\"PATH\": \"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin:/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin:/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9/bin:/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11/bin:/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0/bin:/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0/bin:/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1/bin\", \"CONTAINER_HOST\": \"unix:///run/podman/podman.sock\", \"DOCKER_HOST\": \"unix:///run/podman/podman.sock\"}, sensitive_env: {}, config: {\"state\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state\"), \"runtime_path\": String(\"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman\"), \"runtime\": String(\"podman\"), \"base_url\": Null, \"devcontainer_cli\": String(\"/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer\"), \"log_file\": String(\"/var/log/radicle-ci/adapters/devcontainer/devcontainer.log\"), \"forward_env\": Sequence [String(\"RADICLE_E2E_SECRET\")], \"reports\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports\")}, config_env: Some(\"RAD_DCI_CONFIG\") }}, filters: [], max_run_time: 3600s, queue_len_interval: 3600s, refresh_interval: 300, concurrent_adapters: None, description: None, update_job_cobs: true }"}}
ci-broker.json> {
ci-broker.json> "default_adapter": null,
ci-broker.json> "triggers": [
ci-broker.json> {
ci-broker.json> "adapter": "devcontainer",
ci-broker.json> "filters": [
ci-broker.json> {
ci-broker.json> "And": [
ci-broker.json> {
ci-broker.json> "HasFile": ".radicle/devcontainer-ci.yaml"
ci-broker.json> },
ci-broker.json> "DefaultBranch"
ci-broker.json> ]
ci-broker.json> }
ci-broker.json> ]
ci-broker.json> }
ci-broker.json> ],
ci-broker.json> "report_dir": "/var/lib/radicle-ci/reports",
ci-broker.json> "db": "/var/lib/radicle-ci/ci-broker.db",
ci-broker.json> "adapters": {
ci-broker.json> "devcontainer": {
ci-broker.json> "command": "/nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci",
ci-broker.json> "env": {
ci-broker.json> "PATH": "/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin:/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin:/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9/bin:/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11/bin:/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0/bin:/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0/bin:/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1/bin",
ci-broker.json> "CONTAINER_HOST": "unix:///run/podman/podman.sock",
ci-broker.json> "DOCKER_HOST": "unix:///run/podman/podman.sock"
ci-broker.json> },
ci-broker.json> "sensitive_env": {},
ci-broker.json> "config": {
ci-broker.json> "state": "/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state",
ci-broker.json> "runtime_path": "/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman",
ci-broker.json> "runtime": "podman",
ci-broker.json> "base_url": null,
ci-broker.json> "devcontainer_cli": "/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer",
ci-broker.json> "log_file": "/var/log/radicle-ci/adapters/devcontainer/devcontainer.log",
ci-broker.json> "forward_env": [
ci-broker.json> "RADICLE_E2E_SECRET"
ci-broker.json> ],
ci-broker.json> "reports": "/var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports"
ci-broker.json> },
ci-broker.json> "config_env": "RAD_DCI_CONFIG"
ci-broker.json> }
ci-broker.json> },
ci-broker.json> "filters": [],
ci-broker.json> "max_run_time": {
ci-broker.json> "secs": 3600,
ci-broker.json> "nanos": 0
ci-broker.json> },
ci-broker.json> "queue_len_interval": {
ci-broker.json> "secs": 3600,
ci-broker.json> "nanos": 0
ci-broker.json> },
ci-broker.json> "refresh_interval": 300,
ci-broker.json> "concurrent_adapters": null,
ci-broker.json> "description": null,
ci-broker.json> "update_job_cobs": true
ci-broker.json> }
ci-broker.json> {"timestamp":"2026-07-07T15:55:12.776024Z","level":"INFO","fields":{"message":"CI broker ends successfully","msg_id":"CibEndSuccess","kind":"shutdown","success":true}}
building '/nix/store/rxqa0qax1zrn7l63fzjjijwicqnag0wv-unit-radicle-ci-broker.service.drv'...
building '/nix/store/zl9f7b1mz4w08sxdg3f94xmw05925504-system-units.drv'...
building '/nix/store/y5swz027fyskrjxfad171f23xy9w4p8f-etc.drv'...
building '/nix/store/zjf1p06n5rb59pxy3x8355384iqc5ifa-activate.drv'...
building '/nix/store/gm7x7xx8k2padig47brgrcdl5lszddbm-nixos-system-seed-test.drv'...
nixos-system-seed-test> structuredAttrs is enabled
building '/nix/store/hiwli3klrm8kfg3maihvzp9zzsp558bs-closure-info.drv'...
closure-info> structuredAttrs is enabled
building '/nix/store/bcwmzpr6krv43w1fizl9j54p78alzvn0-run-nixos-vm.drv'...
building '/nix/store/hgqdnrwfp4vrvm3xnvygrp8dmhlbd0an-nixos-vm.drv'...
building '/nix/store/nyibayix15xb2nfpj3mlx86l8rnzzg67-driverConfiguration.json.drv'...
driverConfiguration.json> structuredAttrs is enabled
building '/nix/store/fqqaq2mpjvi6q5a5wr461jghfx7lyi42-nixos-test-driver-radicle-devcontainer-ci-e2e.drv'...
nixos-test-driver-radicle-devcontainer-ci-e2e> Running type check (enable/disable: config.skipTypeCheck)
nixos-test-driver-radicle-devcontainer-ci-e2e> See https://nixos.org/manual/nixos/stable/#test-opt-skipTypeCheck
nixos-test-driver-radicle-devcontainer-ci-e2e> All checks passed!
nixos-test-driver-radicle-devcontainer-ci-e2e> Linting test script (enable/disable: config.skipLint)
nixos-test-driver-radicle-devcontainer-ci-e2e> See https://nixos.org/manual/nixos/stable/#test-opt-skipLint
nixos-test-driver-radicle-devcontainer-ci-e2e> All checks passed!
building '/nix/store/d1616pa2fj438fm1y3vyavyy7a7rf5dh-vm-test-run-radicle-devcontainer-ci-e2e.drv'...
vm-test-run-radicle-devcontainer-ci-e2e> Machine state will be reset. To keep it, pass --keep-machine-state
vm-test-run-radicle-devcontainer-ci-e2e> start all VLans
vm-test-run-radicle-devcontainer-ci-e2e> (finished: start all VLans, in 0.00 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> Test will time out and terminate in 3600 seconds
vm-test-run-radicle-devcontainer-ci-e2e> run the VM test script
vm-test-run-radicle-devcontainer-ci-e2e> additionally exposed symbols:
vm-test-run-radicle-devcontainer-ci-e2e> alice, seed,
vm-test-run-radicle-devcontainer-ci-e2e> vlan1,
vm-test-run-radicle-devcontainer-ci-e2e> start_all, test_script, machines, machines_qemu, machines_nspawn, vlans, driver, log, os, create_machine, subtest, run_tests, join_all, retry, serial_stdout_off, serial_stdout_on, polling_condition, BaseMachine, QemuMachine, NspawnMachine, t, debug, dump_machine_ssh
vm-test-run-radicle-devcontainer-ci-e2e> start all VMs
vm-test-run-radicle-devcontainer-ci-e2e> alice: starting vm
vm-test-run-radicle-devcontainer-ci-e2e> seed: starting vm
vm-test-run-radicle-devcontainer-ci-e2e> seed: QEMU running (pid 26333)
vm-test-run-radicle-devcontainer-ci-e2e> alice: QEMU running (pid 26334)
vm-test-run-radicle-devcontainer-ci-e2e> alice # Disk image does not exist, creating the virtualisation disk image...
vm-test-run-radicle-devcontainer-ci-e2e> seed # Disk image does not exist, creating the virtualisation disk image...
vm-test-run-radicle-devcontainer-ci-e2e> alice # Formatting '/nix/var/nix/builds/nix-2988-2689899712/vm-state-alice/tmp.XRov3qcRvE', fmt=raw size=1073741824
vm-test-run-radicle-devcontainer-ci-e2e> (finished: start all VMs, in 0.21 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed # Formatting '/nix/var/nix/builds/nix-2988-2689899712/vm-state-seed/tmp.UfPlkG9kJl', fmt=raw size=4294967296
vm-test-run-radicle-devcontainer-ci-e2e> seed: waiting for unit radicle-ci-broker.service
vm-test-run-radicle-devcontainer-ci-e2e> alice # mke2fs 1.47.4 (6-Mar-2025)
vm-test-run-radicle-devcontainer-ci-e2e> seed # mke2fs 1.47.4 (6-Mar-2025)
vm-test-run-radicle-devcontainer-ci-e2e> alice # Discarding device blocks: 0/262144 done
vm-test-run-radicle-devcontainer-ci-e2e> seed # Discarding device blocks: 0/1048576 done
vm-test-run-radicle-devcontainer-ci-e2e> seed: waiting for the VM to finish booting
vm-test-run-radicle-devcontainer-ci-e2e> seed # Creating filesystem with 1048576 4k blocks and 262144 inodes
vm-test-run-radicle-devcontainer-ci-e2e> alice # Creating filesystem with 262144 4k blocks and 65536 inodes
vm-test-run-radicle-devcontainer-ci-e2e> seed # Filesystem UUID: dbc2f082-98d3-4337-8a3f-7c1045b0e52d
vm-test-run-radicle-devcontainer-ci-e2e> alice # Filesystem UUID: 81f1a6dd-e270-4094-b614-08c108703c85
vm-test-run-radicle-devcontainer-ci-e2e> seed # Superblock backups stored on blocks:
vm-test-run-radicle-devcontainer-ci-e2e> alice # Superblock backups stored on blocks:
vm-test-run-radicle-devcontainer-ci-e2e> seed # 32768, 98304, 163840, 229376, 294912, 819200, 884736
vm-test-run-radicle-devcontainer-ci-e2e> alice # 32768, 98304, 163840, 229376
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> seed # Allocating group tables: 0/32 done
vm-test-run-radicle-devcontainer-ci-e2e> alice # Allocating group tables: 0/8 done
vm-test-run-radicle-devcontainer-ci-e2e> seed # Writing inode tables: 0/32 done
vm-test-run-radicle-devcontainer-ci-e2e> alice # Writing inode tables: 0/8 done
vm-test-run-radicle-devcontainer-ci-e2e> seed # Creating journal (16384 blocks): done
vm-test-run-radicle-devcontainer-ci-e2e> alice # Creating journal (8192 blocks): done
vm-test-run-radicle-devcontainer-ci-e2e> seed # Writing superblocks and filesystem accounting information: 0/32 done
vm-test-run-radicle-devcontainer-ci-e2e> alice # Writing superblocks and filesystem accounting information: 0/8 done
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> seed # Virtualisation disk image created.
vm-test-run-radicle-devcontainer-ci-e2e> alice # Virtualisation disk image created.
vm-test-run-radicle-devcontainer-ci-e2e> seed # cSeaBIOS (version rel-1.17.0-0-gb52ca86e094d-prebuilt.qemu.org)
vm-test-run-radicle-devcontainer-ci-e2e> alice # cSeaBIOS (version rel-1.17.0-0-gb52ca86e094d-prebuilt.qemu.org)
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> seed # iPXE (http://ipxe.org) 00:03.0 CA00 PCI2.10 PnP PMM+BEFD1850+BEF31850 CA00
vm-test-run-radicle-devcontainer-ci-e2e> alice # iPXE (http://ipxe.org) 00:03.0 CA00 PCI2.10 PnP PMM+3EFD1850+3EF31850 CA00
vm-test-run-radicle-devcontainer-ci-e2e> seed # Press Ctrl-B to configure iPXE (PCI 00:03.0)...
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> alice # Press Ctrl-B to configure iPXE (PCI 00:03.0)...
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> seed # iPXE (http://ipxe.org) 00:09.0 CB00 PCI2.10 PnP PMM BEFD1850 BEF31850 CB00
vm-test-run-radicle-devcontainer-ci-e2e> alice # iPXE (http://ipxe.org) 00:09.0 CB00 PCI2.10 PnP PMM 3EFD1850 3EF31850 CB00
vm-test-run-radicle-devcontainer-ci-e2e> seed # Press Ctrl-B to configure iPXE (PCI 00:09.0)...
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> alice # Press Ctrl-B to configure iPXE (PCI 00:09.0)...
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> alice #
vm-test-run-radicle-devcontainer-ci-e2e> seed # Booting from ROM...
vm-test-run-radicle-devcontainer-ci-e2e> alice # Booting from ROM...
vm-test-run-radicle-devcontainer-ci-e2e> alice # Probing EDD (edd=off to disable)... ock[ 0.000000] Linux version 6.18.37 (nixbld@localhost) (gcc (GCC) 15.2.0, GNU ld (GNU Binutils) 2.46) #1-NixOS SMP PREEMPT_DYNAMIC Sat Jun 27 10:06:50 UTC 2026
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] Command line: console=ttyS0 console=tty0 panic=1 boot.panic_on_fail clocksource=acpi_pm root=fstab loglevel=7 net.ifnames=0 lsm=landlock,yama,bpf init=/nix/store/nvxgz92d651dr6qnlws7ymr2czc7giva-nixos-system-alice-test/init regInfo=/nix/store/wi1pk5zg6l0d3lqkxiflrg3lgrwzxzci-closure-info/registration console=ttyS0,115200n8 console=tty0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-provided physical RAM map:
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] NX (Execute Disable) protection: active
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] APIC: Static calls initialized
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] SMBIOS 2.8 present.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.17.0-0-gb52ca86e094d-prebuilt.qemu.org 04/01/2014
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] DMI: Memory slots populated: 1/1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] Hypervisor detected: KVM
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000000] kvm-clock: using sched offset of 289070479 cycles
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000004] tsc: Detected 2496.000 MHz processor
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000315] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000335] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.000337] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005529] found SMP MP-table at [mem 0x000f5470-0x000f547f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005540] Using GB pages for direct mapping
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005609] RAMDISK: [mem 0x3e4b7000-0x3ffcffff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005613] ACPI: Early table checksum verification disabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005616] ACPI: RSDP 0x00000000000F5290 000014 (v00 BOCHS )
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005619] ACPI: RSDT 0x000000003FFE23CC 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005623] ACPI: FACP 0x000000003FFE2280 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005630] ACPI: DSDT 0x000000003FFE0040 002240 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005632] ACPI: FACS 0x000000003FFE0000 000040
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005635] ACPI: APIC 0x000000003FFE22F4 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005637] ACPI: HPET 0x000000003FFE236C 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005640] ACPI: WAET 0x000000003FFE23A4 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005642] ACPI: Reserving FACP table memory at [mem 0x3ffe2280-0x3ffe22f3]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005643] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe227f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005643] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005644] ACPI: Reserving APIC table memory at [mem 0x3ffe22f4-0x3ffe236b]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005644] ACPI: Reserving HPET table memory at [mem 0x3ffe236c-0x3ffe23a3]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005644] ACPI: Reserving WAET table memory at [mem 0x3ffe23a4-0x3ffe23cb]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005826] No NUMA configuration found
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005826] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005828] NODE_DATA(0) allocated [mem 0x3ffd5780-0x3ffdacff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005866] Zone ranges:
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005866] DMA [mem 0x0000000000001000-0x0000000000ffffff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005868] DMA32 [mem 0x0000000001000000-0x000000003ffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005868] Normal empty
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005869] Device empty
vm-test-run-radicle-devcontainer-ci-e2e> seed # Probing EDD (edd=off to disable)... ock[ 0.000000] Linux version 6.18.37 (nixbld@localhost) (gcc (GCC) 15.2.0, GNU ld (GNU Binutils) 2.46) #1-NixOS SMP PREEMPT_DYNAMIC Sat Jun 27 10:06:50 UTC 2026
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005869] Movable zone start for each node
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005870] Early memory node ranges
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005870] node 0: [mem 0x0000000000001000-0x000000000009efff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005871] node 0: [mem 0x0000000000100000-0x000000003ffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005872] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.005881] On node 0, zone DMA: 1 pages in unavailable ranges
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] Command line: console=ttyS0 console=tty0 panic=1 boot.panic_on_fail clocksource=acpi_pm root=fstab loglevel=7 net.ifnames=0 lsm=landlock,yama,bpf init=/nix/store/jcgy076jfjnnk8n14zwp0zf0w78xpg7i-nixos-system-seed-test/init regInfo=/nix/store/16wcd5dn2362xpsb882yrkwjf32wz2ym-closure-info/registration console=ttyS0,115200n8 console=tty0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-provided physical RAM map:
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.006017] On node 0, zone DMA: 97 pages in unavailable ranges
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013527] On node 0, zone DMA32: 37 pages in unavailable ranges
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013840] ACPI: PM-Timer IO Port: 0x608
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013850] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013869] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bffdafff] usable
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013871] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-e820: [mem 0x00000000bffdb000-0x00000000bfffffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013872] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013873] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013874] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] NX (Execute Disable) protection: active
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013874] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] APIC: Static calls initialized
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] SMBIOS 2.8 present.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013877] ACPI: Using ACPI (MADT) for SMP configuration information
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013878] ACPI: HPET id: 0x8086a201 base: 0xfed00000
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.17.0-0-gb52ca86e094d-prebuilt.qemu.org 04/01/2014
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013880] TSC deadline timer available
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] DMI: Memory slots populated: 1/1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013882] CPU topo: Max. logical packages: 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] Hypervisor detected: KVM
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013883] CPU topo: Max. logical dies: 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] last_pfn = 0xbffdb max_arch_pfn = 0x400000000
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013883] CPU topo: Max. dies per package: 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013885] CPU topo: Max. threads per core: 1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013885] CPU topo: Num. cores per package: 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000001] kvm-clock: using sched offset of 288379905 cycles
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013885] CPU topo: Num. threads per package: 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013886] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000005] tsc: Detected 2496.000 MHz processor
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013896] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000303] last_pfn = 0xbffdb max_arch_pfn = 0x400000000
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013913] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000325] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013914] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.000328] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013915] [mem 0x40000000-0xfeffbfff] available for PCI devices
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005524] found SMP MP-table at [mem 0x000f5470-0x000f547f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013916] Booting paravirtualized kernel on KVM
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005535] Using GB pages for direct mapping
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005608] RAMDISK: [mem 0xbe4b6000-0xbffcffff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.013918] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005611] ACPI: Early table checksum verification disabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.017613] setup_percpu: NR_CPUS:384 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005614] ACPI: RSDP 0x00000000000F5430 000014 (v00 BOCHS )
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.018631] percpu: Embedded 98 pages/cpu s278528 r8192 d114688 u2097152
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005617] ACPI: RSDT 0x00000000BFFE2027 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.018658] kvm-guest: PV spinlocks disabled, single CPU
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005622] ACPI: FACP 0x00000000BFFE1ED3 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005628] ACPI: DSDT 0x00000000BFFDFC40 002293 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005630] ACPI: FACS 0x00000000BFFDFC00 000040
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005633] ACPI: APIC 0x00000000BFFE1F47 000080 (v03 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.018659] Kernel command line: console=ttyS0 console=tty0 panic=1 boot.panic_on_fail clocksource=acpi_pm root=fstab loglevel=7 net.ifnames=0 lsm=landlock,yama,bpf init=/nix/store/nvxgz92d651dr6qnlws7ymr2czc7giva-nixos-system-alice-test/init regInfo=/nix/store/wi1pk5zg6l0d3lqkxiflrg3lgrwzxzci-closure-info/registration console=ttyS0,115200n8 console=tty0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005635] ACPI: HPET 0x00000000BFFE1FC7 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005638] ACPI: WAET 0x00000000BFFE1FFF 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.018740] Unknown kernel command line parameters "regInfo=/nix/store/wi1pk5zg6l0d3lqkxiflrg3lgrwzxzci-closure-info/registration", will be passed to user space.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.018748] random: crng init done
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005640] ACPI: Reserving FACP table memory at [mem 0xbffe1ed3-0xbffe1f46]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.018749] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005641] ACPI: Reserving DSDT table memory at [mem 0xbffdfc40-0xbffe1ed2]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.018778] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005642] ACPI: Reserving FACS table memory at [mem 0xbffdfc00-0xbffdfc3f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.019003] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005642] ACPI: Reserving APIC table memory at [mem 0xbffe1f47-0xbffe1fc6]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.019034] Fallback order for Node 0: 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005643] ACPI: Reserving HPET table memory at [mem 0xbffe1fc7-0xbffe1ffe]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.019036] Built 1 zonelists, mobility grouping on. Total pages: 262009
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.019036] Policy zone: DMA32
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005643] ACPI: Reserving WAET table memory at [mem 0xbffe1fff-0xbffe2026]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005819] No NUMA configuration found
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.019921] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005820] Faking a node at [mem 0x0000000000000000-0x00000000bffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.022087] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.023005] allocated 2097152 bytes of page_ext
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005821] NODE_DATA(0) allocated [mem 0xbffd5780-0xbffdacff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005866] Zone ranges:
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.027585] ftrace: allocating 48585 entries in 192 pages
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005866] DMA [mem 0x0000000000001000-0x0000000000ffffff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.027586] ftrace: allocated 192 pages with 2 groups
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028067] Dynamic Preempt: lazy
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005867] DMA32 [mem 0x0000000001000000-0x00000000bffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005868] Normal empty
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028148] rcu: Preemptible hierarchical RCU implementation.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005868] Device empty
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028149] rcu: RCU event tracing is enabled.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005869] Movable zone start for each node
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005869] Early memory node ranges
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028149] rcu: RCU restricting CPUs from NR_CPUS=384 to nr_cpu_ids=1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005870] node 0: [mem 0x0000000000001000-0x000000000009efff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028150] Trampoline variant of Tasks RCU enabled.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028150] Rude variant of Tasks RCU enabled.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005870] node 0: [mem 0x0000000000100000-0x00000000bffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028150] Tracing variant of Tasks RCU enabled.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005871] Initmem setup node 0 [mem 0x0000000000001000-0x00000000bffdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028151] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.005882] On node 0, zone DMA: 1 pages in unavailable ranges
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028151] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.006014] On node 0, zone DMA: 97 pages in unavailable ranges
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.027811] On node 0, zone DMA32: 37 pages in unavailable ranges
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028161] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028134] ACPI: PM-Timer IO Port: 0x608
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028145] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028162] RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028165] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.028163] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028167] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.031411] NR_IRQS: 24832, nr_irqs: 256, preallocated irqs: 16
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028169] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.031619] rcu: srcu_init: Setting srcu_struct sizes based on contention.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028169] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.031705] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028170] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.034269] Console: colour VGA+ 80x25
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028170] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.034271] printk: legacy console [tty0] enabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.051361] printk: legacy console [ttyS0] enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028174] ACPI: Using ACPI (MADT) for SMP configuration information
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028174] ACPI: HPET id: 0x8086a201 base: 0xfed00000
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.102900] ACPI: Core revision 20250807
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028177] TSC deadline timer available
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028180] CPU topo: Max. logical packages: 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028180] CPU topo: Max. logical dies: 1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.103415] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028180] CPU topo: Max. dies per package: 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028182] CPU topo: Max. threads per core: 1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.104315] APIC: Switch to symmetric I/O mode setup
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028182] CPU topo: Num. cores per package: 2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.104891] x2apic enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028183] CPU topo: Num. threads per package: 2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028183] CPU topo: Allowing 2 present CPUs plus 0 hotplug CPUs
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.105333] APIC: Switched APIC routing to: physical x2apic
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028195] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028205] kvm-guest: KVM setup pv remote TLB flush
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028207] kvm-guest: setup PV sched yield
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.106464] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028212] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028213] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.107025] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028213] [mem 0xc0000000-0xfeffbfff] available for PCI devices
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028214] Booting paravirtualized kernel on KVM
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.107966] Calibrating delay loop (skipped) preset value.. 4992.00 BogoMIPS (lpj=2496000)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.028216] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.109049] x86/cpu: User Mode Instruction Prevention (UMIP) activated
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.032006] setup_percpu: NR_CPUS:384 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.110032] CET detected: Indirect Branch Tracking enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.032990] percpu: Embedded 98 pages/cpu s278528 r8192 d114688 u1048576
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.110537] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.033019] kvm-guest: PV spinlocks enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.033020] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.110964] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.111503] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.111964] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.033022] Kernel command line: console=ttyS0 console=tty0 panic=1 boot.panic_on_fail clocksource=acpi_pm root=fstab loglevel=7 net.ifnames=0 lsm=landlock,yama,bpf init=/nix/store/jcgy076jfjnnk8n14zwp0zf0w78xpg7i-nixos-system-seed-test/init regInfo=/nix/store/16wcd5dn2362xpsb882yrkwjf32wz2ym-closure-info/registration console=ttyS0,115200n8 console=tty0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.112964] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.113492] Register File Data Sampling: Mitigation: Clear Register File
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.033098] Unknown kernel command line parameters "regInfo=/nix/store/16wcd5dn2362xpsb882yrkwjf32wz2ym-closure-info/registration", will be passed to user space.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.033107] random: crng init done
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.114409] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.033107] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.034823] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.114965] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.035687] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.035734] Fallback order for Node 0: 0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.115964] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.035736] Built 1 zonelists, mobility grouping on. Total pages: 786297
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.035736] Policy zone: DMA32
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.116740] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.036775] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.117457] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.041707] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.044467] allocated 6291456 bytes of page_ext
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049076] ftrace: allocating 48585 entries in 192 pages
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049077] ftrace: allocated 192 pages with 2 groups
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049527] Dynamic Preempt: lazy
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049615] rcu: Preemptible hierarchical RCU implementation.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049616] rcu: RCU event tracing is enabled.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.117964] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049616] rcu: RCU restricting CPUs from NR_CPUS=384 to nr_cpu_ids=2.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049617] Trampoline variant of Tasks RCU enabled.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.119374] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049617] Rude variant of Tasks RCU enabled.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049617] Tracing variant of Tasks RCU enabled.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.119964] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049618] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049619] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.120626] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049629] RCU Tasks: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.121530] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.121964] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049630] RCU Tasks Rude: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.122486] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.049631] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.052751] NR_IRQS: 24832, nr_irqs: 440, preallocated irqs: 16
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.122964] x86/fpu: xstate_offset[12]: 856, xstate_sizes[12]: 24
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.052955] rcu: srcu_init: Setting srcu_struct sizes based on contention.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.123499] x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.053042] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.055695] Console: colour VGA+ 80x25
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.055697] printk: legacy console [tty0] enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.074180] printk: legacy console [ttyS0] enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.127018] ACPI: Core revision 20250807
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.127525] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.128423] APIC: Switch to symmetric I/O mode setup
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.129003] x2apic enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.129449] APIC: Switched APIC routing to: physical x2apic
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.129962] kvm-guest: APIC: send_IPI_mask() replaced with kvm_send_ipi_mask()
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.130641] kvm-guest: APIC: send_IPI_mask_allbutself() replaced with kvm_send_ipi_mask_allbutself()
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.131469] kvm-guest: setup PV IPIs
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.132451] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.133010] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.133947] Calibrating delay loop (skipped) preset value.. 4992.00 BogoMIPS (lpj=2496000)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.135028] x86/cpu: User Mode Instruction Prevention (UMIP) activated
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.135975] CET detected: Indirect Branch Tracking enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.136485] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.136945] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.137491] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.137946] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.138945] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.138023] Freeing SMP alternatives memory: 44K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.139478] Register File Data Sampling: Mitigation: Clear Register File
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.138480] pid_max: default: 32768 minimum: 301
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.138921] LSM: initializing lsm=capability,landlock,yama,bpf,ima
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.139391] landlock: Up and running.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.139726] Yama: becoming mindful.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.140032] LSM support for eBPF active
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.140418] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.140393] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.140971] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.141946] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.142636] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.142304] smpboot: CPU0: 13th Gen Intel(R) Core(TM) i5-13500 (family: 0x6, model: 0xbf, stepping: 0x2)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.143525] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.143945] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.142997] Performance Events: unsupported CPU family 6 model 191 no PMU driver, software events only.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.143803] signal: max sigframe size: 3632
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.144499] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.144001] rcu: Hierarchical SRCU implementation.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.145361] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.144433] rcu: Max phase no-delay instances is 400.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.145945] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.145118] NMI watchdog: Perf NMI watchdog permanently disabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.145659] smp: Bringing up secondary CPUs ...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.146613] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.145970] smp: Brought up 1 node, 1 CPU
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.147513] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.146344] smpboot: Total of 1 processors activated (4992.00 BogoMIPS)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.147945] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.148471] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.146981] Memory: 944620K/1048036K available (17155K kernel code, 2721K rwdata, 13560K rodata, 3636K init, 3020K bss, 96252K reserved, 0K cma-reserved)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.148945] x86/fpu: xstate_offset[12]: 856, xstate_sizes[12]: 24
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.148054] devtmpfs: initialized
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.148453] x86/mm: Memory block size: 128MB
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.149483] x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.149134] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.149956] posixtimers hash table entries: 512 (order: 1, 8192 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.150438] futex hash table entries: 256 (16384 bytes on 1 NUMA nodes, total 16 KiB, linear).
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.151002] pinctrl core: initialized pinctrl subsystem
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.151584] PM: RTC time: 15:55:16, date: 2026-07-07
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.153066] NET: Registered PF_NETLINK/PF_ROUTE protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.153715] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.153976] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.154705] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.154969] audit: initializing netlink subsys (disabled)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.155529] thermal_sys: Registered thermal governor 'fair_share'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.155530] thermal_sys: Registered thermal governor 'bang_bang'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.155966] audit: type=2000 audit(1783439717.053:1): state=initialized audit_enabled=0 res=1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.156966] thermal_sys: Registered thermal governor 'step_wise'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.156966] thermal_sys: Registered thermal governor 'user_space'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.157475] thermal_sys: Registered thermal governor 'power_allocator'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.157969] cpuidle: using governor menu
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.161623] Freeing SMP alternatives memory: 44K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.161947] pid_max: default: 32768 minimum: 301
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.158921] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.162393] LSM: initializing lsm=capability,landlock,yama,bpf,ima
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.159473] PCI: Using configuration type 1 for base access
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.162988] landlock: Up and running.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.163362] Yama: becoming mindful.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.160034] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.163757] LSM support for eBPF active
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.164253] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.164949] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.166090] smpboot: CPU0: 13th Gen Intel(R) Core(TM) i5-13500 (family: 0x6, model: 0xbf, stepping: 0x2)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.166961] Performance Events: unsupported CPU family 6 model 191 no PMU driver, software events only.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.167760] signal: max sigframe size: 3632
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.167976] rcu: Hierarchical SRCU implementation.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.165020] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.168398] rcu: Max phase no-delay instances is 400.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.165608] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.168902] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.165965] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.166533] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.169643] NMI watchdog: Perf NMI watchdog permanently disabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.169985] smp: Bringing up secondary CPUs ...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.170518] smpboot: x86: Booting SMP configuration:
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.170949] .... node #0, CPUs: #1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.171029] smp: Brought up 1 node, 2 CPUs
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.171947] smpboot: Total of 2 processors activated (9984.00 BogoMIPS)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.172656] Memory: 2998368K/3145188K available (17155K kernel code, 2721K rwdata, 13560K rodata, 3636K init, 3020K bss, 134036K reserved, 0K cma-reserved)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.171396] ACPI: Added _OSI(Module Device)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.173232] devtmpfs: initialized
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.171777] ACPI: Added _OSI(Processor Device)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.173333] x86/mm: Memory block size: 128MB
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.171965] ACPI: Added _OSI(Processor Aggregator Device)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.174334] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.172975] ACPI: 1 ACPI AML tables successfully acquired and loaded
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.174958] posixtimers hash table entries: 1024 (order: 2, 16384 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.175614] futex hash table entries: 512 (32768 bytes on 1 NUMA nodes, total 32 KiB, linear).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.175988] pinctrl core: initialized pinctrl subsystem
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.176550] PM: RTC time: 15:55:16, date: 2026-07-07
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.178170] NET: Registered PF_NETLINK/PF_ROUTE protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.178153] ACPI: Interpreter enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.179039] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.178498] ACPI: PM: (supports S0 S3 S4 S5)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.179677] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.178881] ACPI: Using IOAPIC for interrupt routing
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.179286] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.180160] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.180853] audit: initializing netlink subsys (disabled)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.181317] audit: type=2000 audit(1783439717.076:1): state=initialized audit_enabled=0 res=1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.181317] thermal_sys: Registered thermal governor 'fair_share'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.181949] thermal_sys: Registered thermal governor 'bang_bang'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.182302] PCI: Using E820 reservations for host bridge windows
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.182471] thermal_sys: Registered thermal governor 'step_wise'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.182924] ACPI: Enabled 2 GPEs in block 00 to 0F
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.182947] thermal_sys: Registered thermal governor 'user_space'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.183461] thermal_sys: Registered thermal governor 'power_allocator'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.183952] cpuidle: using governor menu
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.184520] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.184939] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.185448] PCI: Using configuration type 1 for base access
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.186019] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.188968] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.189667] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.189971] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.192971] acpiphp: Slot [3] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.193957] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.193351] acpiphp: Slot [4] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.193713] acpiphp: Slot [5] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.194540] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.193972] acpiphp: Slot [6] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.194352] acpiphp: Slot [7] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.194946] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.194718] acpiphp: Slot [8] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.195514] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.196975] acpiphp: Slot [9] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.197330] acpiphp: Slot [10] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.197684] acpiphp: Slot [11] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.197977] acpiphp: Slot [12] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.198338] acpiphp: Slot [13] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.198709] acpiphp: Slot [14] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.200183] ACPI: Added _OSI(Module Device)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.200585] ACPI: Added _OSI(Processor Device)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.200947] ACPI: Added _OSI(Processor Aggregator Device)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.200821] acpiphp: Slot [15] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.200976] acpiphp: Slot [16] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.202009] ACPI: 1 ACPI AML tables successfully acquired and loaded
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.201346] acpiphp: Slot [17] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.201727] acpiphp: Slot [18] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.201978] acpiphp: Slot [19] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.202363] acpiphp: Slot [20] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.204040] ACPI: Interpreter enabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.202731] acpiphp: Slot [21] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.204202] ACPI: PM: (supports S0 S3 S4 S5)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.202973] acpiphp: Slot [22] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.203356] acpiphp: Slot [23] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.204593] ACPI: Using IOAPIC for interrupt routing
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.203725] acpiphp: Slot [24] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.203972] acpiphp: Slot [25] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.204955] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.204355] acpiphp: Slot [26] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.204727] acpiphp: Slot [27] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.205809] PCI: Using E820 reservations for host bridge windows
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.204973] acpiphp: Slot [28] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.206475] ACPI: Enabled 2 GPEs in block 00 to 0F
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.205340] acpiphp: Slot [29] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.205710] acpiphp: Slot [30] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.205975] acpiphp: Slot [31] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.206341] PCI host bridge to bus 0000:00
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.206711] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.206964] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.208803] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.207543] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.209429] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.207967] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfebfffff window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.208620] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.209947] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.208965] pci_bus 0000:00: root bus resource [bus 00-ff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.210881] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.209506] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.211976] acpiphp: Slot [3] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.212355] acpiphp: Slot [4] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.210230] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.212827] acpiphp: Slot [5] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.213214] acpiphp: Slot [6] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.211197] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.213659] acpiphp: Slot [7] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.214958] acpiphp: Slot [8] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.215352] acpiphp: Slot [9] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.212321] pci 0000:00:01.1: BAR 4 [io 0xc1e0-0xc1ef]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.215809] acpiphp: Slot [10] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.212804] pci 0000:00:01.1: BAR 0 [io 0x01f0-0x01f7]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.215959] acpiphp: Slot [11] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.212965] pci 0000:00:01.1: BAR 1 [io 0x03f6]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.216422] acpiphp: Slot [12] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.213484] pci 0000:00:01.1: BAR 2 [io 0x0170-0x0177]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.216880] acpiphp: Slot [13] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.213964] pci 0000:00:01.1: BAR 3 [io 0x0376]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.217261] acpiphp: Slot [14] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.217729] acpiphp: Slot [15] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.214585] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.217958] acpiphp: Slot [16] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.218413] acpiphp: Slot [17] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.218798] acpiphp: Slot [18] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.215641] pci 0000:00:01.2: BAR 4 [io 0xc100-0xc11f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.218958] acpiphp: Slot [19] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.219374] acpiphp: Slot [20] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.216299] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.219796] acpiphp: Slot [21] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.220285] acpiphp: Slot [22] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.217149] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.220737] acpiphp: Slot [23] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.217782] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.221958] acpiphp: Slot [24] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.222432] acpiphp: Slot [25] registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.218083] pci 0000:00:02.0: [1234:1111] type 00 class 0x030000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.222876] acpiphp: Slot [26] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.223247] acpiphp: Slot [27] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.223632] acpiphp: Slot [28] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.223958] acpiphp: Slot [29] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.224336] acpiphp: Slot [30] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.224721] acpiphp: Slot [31] registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.224958] PCI host bridge to bus 0000:00
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.219722] pci 0000:00:02.0: BAR 0 [mem 0xfd000000-0xfdffffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.219973] pci 0000:00:02.0: BAR 2 [mem 0xfebd0000-0xfebd0fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.225421] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.220492] pci 0000:00:02.0: ROM [mem 0xfebc0000-0xfebcffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.225947] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.221068] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.226629] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.227946] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.222232] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.228692] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.228946] pci_bus 0000:00: root bus resource [bus 00-ff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.223925] pci 0000:00:03.0: BAR 0 [io 0xc120-0xc13f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.224301] pci 0000:00:03.0: BAR 1 [mem 0xfebd1000-0xfebd1fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.229495] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.224828] pci 0000:00:03.0: BAR 4 [mem 0xfe000000-0xfe003fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.225418] pci 0000:00:03.0: ROM [mem 0xfeb40000-0xfeb7ffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.231300] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.232225] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.226596] pci 0000:00:04.0: [1af4:1005] type 00 class 0x00ff00 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.233725] pci 0000:00:01.1: BAR 4 [io 0xc1e0-0xc1ef]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.233969] pci 0000:00:01.1: BAR 0 [io 0x01f0-0x01f7]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.227974] pci 0000:00:04.0: BAR 0 [io 0xc140-0xc15f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.234623] pci 0000:00:01.1: BAR 1 [io 0x03f6]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.228441] pci 0000:00:04.0: BAR 1 [mem 0xfebd2000-0xfebd2fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.234946] pci 0000:00:01.1: BAR 2 [io 0x0170-0x0177]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.228980] pci 0000:00:04.0: BAR 4 [mem 0xfe004000-0xfe007fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.235655] pci 0000:00:01.1: BAR 3 [io 0x0376]: legacy IDE quirk
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.230139] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.237058] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.231521] pci 0000:00:05.0: BAR 0 [io 0xc080-0xc0bf]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.238653] pci 0000:00:01.2: BAR 4 [io 0xc100-0xc11f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.231969] pci 0000:00:05.0: BAR 1 [mem 0xfebd3000-0xfebd3fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.232495] pci 0000:00:05.0: BAR 4 [mem 0xfe008000-0xfe00bfff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.239405] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.233523] pci 0000:00:06.0: [1af4:1009] type 00 class 0x000200 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.240144] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.240911] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.234978] pci 0000:00:06.0: BAR 0 [io 0xc160-0xc17f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.241537] pci 0000:00:02.0: [1234:1111] type 00 class 0x030000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.235438] pci 0000:00:06.0: BAR 1 [mem 0xfebd4000-0xfebd4fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.235968] pci 0000:00:06.0: BAR 4 [mem 0xfe00c000-0xfe00ffff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.237110] pci 0000:00:07.0: [1af4:1009] type 00 class 0x000200 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.245944] pci 0000:00:02.0: BAR 0 [mem 0xfd000000-0xfdffffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.238710] pci 0000:00:07.0: BAR 0 [io 0xc180-0xc19f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.246547] pci 0000:00:02.0: BAR 2 [mem 0xfebd0000-0xfebd0fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.238971] pci 0000:00:07.0: BAR 1 [mem 0xfebd5000-0xfebd5fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.246963] pci 0000:00:02.0: ROM [mem 0xfebc0000-0xfebcffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.239498] pci 0000:00:07.0: BAR 4 [mem 0xfe010000-0xfe013fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.247612] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.240550] pci 0000:00:08.0: [1af4:1001] type 00 class 0x010000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.248398] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.250952] pci 0000:00:03.0: BAR 0 [io 0xc120-0xc13f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.251429] pci 0000:00:03.0: BAR 1 [mem 0xfebd1000-0xfebd1fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.251962] pci 0000:00:03.0: BAR 4 [mem 0xfe000000-0xfe003fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.252561] pci 0000:00:03.0: ROM [mem 0xfeb40000-0xfeb7ffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.241949] pci 0000:00:08.0: BAR 0 [io 0xc000-0xc07f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.253615] pci 0000:00:04.0: [1af4:1005] type 00 class 0x00ff00 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.242302] pci 0000:00:08.0: BAR 1 [mem 0xfebd6000-0xfebd6fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.242823] pci 0000:00:08.0: BAR 4 [mem 0xfe014000-0xfe017fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.255340] pci 0000:00:04.0: BAR 0 [io 0xc140-0xc15f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.255818] pci 0000:00:04.0: BAR 1 [mem 0xfebd2000-0xfebd2fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.244036] pci 0000:00:09.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.257349] pci 0000:00:04.0: BAR 4 [mem 0xfe004000-0xfe007fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.245398] pci 0000:00:09.0: BAR 0 [io 0xc1a0-0xc1bf]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.245864] pci 0000:00:09.0: BAR 1 [mem 0xfebd7000-0xfebd7fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.257944] pci 0000:00:05.0: [1af4:1009] type 00 class 0x000200 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.246354] pci 0000:00:09.0: BAR 4 [mem 0xfe018000-0xfe01bfff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.246937] pci 0000:00:09.0: ROM [mem 0xfeb80000-0xfebbffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.259952] pci 0000:00:05.0: BAR 0 [io 0xc080-0xc0bf]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.260430] pci 0000:00:05.0: BAR 1 [mem 0xfebd3000-0xfebd3fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.247937] pci 0000:00:0a.0: [1af4:1052] type 00 class 0x090000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.249011] pci 0000:00:0a.0: BAR 1 [mem 0xfebd8000-0xfebd8fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.249531] pci 0000:00:0a.0: BAR 4 [mem 0xfe01c000-0xfe01ffff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.250522] pci 0000:00:0b.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.260963] pci 0000:00:05.0: BAR 4 [mem 0xfe008000-0xfe00bfff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.251970] pci 0000:00:0b.0: BAR 0 [io 0xc0c0-0xc0ff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.252440] pci 0000:00:0b.0: BAR 1 [mem 0xfebd9000-0xfebd9fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.266306] pci 0000:00:06.0: [1af4:1009] type 00 class 0x000200 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.253370] pci 0000:00:0b.0: BAR 4 [mem 0xfe020000-0xfe023fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.267816] pci 0000:00:06.0: BAR 0 [io 0xc160-0xc17f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.254639] pci 0000:00:0c.0: [1af4:1005] type 00 class 0x00ff00 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.268295] pci 0000:00:06.0: BAR 1 [mem 0xfebd4000-0xfebd4fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.268834] pci 0000:00:06.0: BAR 4 [mem 0xfe00c000-0xfe00ffff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.255783] pci 0000:00:0c.0: BAR 0 [io 0xc1c0-0xc1df]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.255969] pci 0000:00:0c.0: BAR 1 [mem 0xfebda000-0xfebdafff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.269966] pci 0000:00:07.0: [1af4:1009] type 00 class 0x000200 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.256491] pci 0000:00:0c.0: BAR 4 [mem 0xfe024000-0xfe027fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.272667] pci 0000:00:07.0: BAR 0 [io 0xc180-0xc19f]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.272951] pci 0000:00:07.0: BAR 1 [mem 0xfebd5000-0xfebd5fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.273498] pci 0000:00:07.0: BAR 4 [mem 0xfe010000-0xfe013fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.259070] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.259647] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.260009] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.274646] pci 0000:00:08.0: [1af4:1001] type 00 class 0x010000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.260568] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.260988] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.261987] iommu: Default domain type: Translated
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.277321] pci 0000:00:08.0: BAR 0 [io 0xc000-0xc07f]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.262550] iommu: DMA domain TLB invalidation policy: lazy mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.277795] pci 0000:00:08.0: BAR 1 [mem 0xfebd6000-0xfebd6fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.263104] ACPI: bus type USB registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.277963] pci 0000:00:08.0: BAR 4 [mem 0xfe014000-0xfe017fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.263492] usbcore: registered new interface driver usbfs
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.263975] usbcore: registered new interface driver hub
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.264436] usbcore: registered new device driver usb
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.279162] pci 0000:00:09.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.265290] NetLabel: Initializing
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.265611] NetLabel: domain hash size = 128
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.280433] pci 0000:00:09.0: BAR 0 [io 0xc1a0-0xc1bf]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.265965] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.280915] pci 0000:00:09.0: BAR 1 [mem 0xfebd7000-0xfebd7fff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.266473] NetLabel: unlabeled traffic allowed by default
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.266956] PCI: Using ACPI for IRQ routing
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.281348] pci 0000:00:09.0: BAR 4 [mem 0xfe018000-0xfe01bfff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.281950] pci 0000:00:09.0: ROM [mem 0xfeb80000-0xfebbffff pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.267451] pci 0000:00:02.0: vgaarb: setting as boot VGA device
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.267963] pci 0000:00:02.0: vgaarb: bridge control possible
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.267963] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.283070] pci 0000:00:0a.0: [1af4:1052] type 00 class 0x090000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.267965] vgaarb: loaded
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.268331] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.268770] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.285335] pci 0000:00:0a.0: BAR 1 [mem 0xfebd8000-0xfebd8fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.285872] pci 0000:00:0a.0: BAR 4 [mem 0xfe01c000-0xfe01ffff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.287177] pci 0000:00:0b.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.288749] pci 0000:00:0b.0: BAR 0 [io 0xc0c0-0xc0ff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.288951] pci 0000:00:0b.0: BAR 1 [mem 0xfebd9000-0xfebd9fff]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.289486] pci 0000:00:0b.0: BAR 4 [mem 0xfe020000-0xfe023fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.273997] clocksource: Switched to clocksource kvm-clock
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.290518] pci 0000:00:0c.0: [1af4:1005] type 00 class 0x00ff00 conventional PCI endpoint
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.274759] VFS: Disk quotas dquot_6.6.0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.291846] pci 0000:00:0c.0: BAR 0 [io 0xc1c0-0xc1df]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.275853] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.292292] pci 0000:00:0c.0: BAR 1 [mem 0xfebda000-0xfebdafff]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.276553] pnp: PnP ACPI init
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.292830] pci 0000:00:0c.0: BAR 4 [mem 0xfe024000-0xfe027fff 64bit pref]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.277068] pnp: PnP ACPI: found 6 devices
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.295578] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.297003] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.297825] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.298388] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.298938] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.282771] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.299975] iommu: Default domain type: Translated
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.283541] clocksource: Switched to clocksource acpi_pm
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.300262] iommu: DMA domain TLB invalidation policy: lazy mode
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.284050] NET: Registered PF_INET protocol family
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.301011] ACPI: bus type USB registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.284580] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.301417] usbcore: registered new interface driver usbfs
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.301911] usbcore: registered new interface driver hub
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.302298] usbcore: registered new device driver usb
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.303313] NetLabel: Initializing
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.303648] NetLabel: domain hash size = 128
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.303946] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.304493] NetLabel: unlabeled traffic allowed by default
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.304951] PCI: Using ACPI for IRQ routing
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.306110] pci 0000:00:02.0: vgaarb: setting as boot VGA device
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.306488] pci 0000:00:02.0: vgaarb: bridge control possible
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.306944] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.307948] vgaarb: loaded
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.308336] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.308778] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.294098] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.294887] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.311993] clocksource: Switched to clocksource kvm-clock
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.295579] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.312809] VFS: Disk quotas dquot_6.6.0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.296253] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.296902] TCP: Hash tables configured (established 8192 bind 8192)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.313153] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.313898] pnp: PnP ACPI init
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.297493] MPTCP token hash table entries: 1024 (order: 3, 24576 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.314430] pnp: PnP ACPI: found 6 devices
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.298152] UDP hash table entries: 512 (order: 3, 32768 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.298733] UDP-Lite hash table entries: 512 (order: 3, 32768 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.299391] NET: Registered PF_UNIX/PF_LOCAL protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.299882] NET: Registered PF_XDP protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.300329] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.300863] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.301409] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.301983] pci_bus 0000:00: resource 7 [mem 0x40000000-0xfebfffff window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.302575] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.303190] pci 0000:00:01.0: PIIX3: Enabling Passive Release
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.303702] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.320331] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.304695] ACPI: \_SB_.LNKD: Enabled at IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.321142] clocksource: Switched to clocksource acpi_pm
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.321669] NET: Registered PF_INET protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.305776] PCI: CLS 0 bytes, default 64
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.322378] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.306224] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.307113] Trying to unpack rootfs image as initramfs...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.332275] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.333113] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.333826] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.334616] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.335330] TCP: Hash tables configured (established 32768 bind 32768)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.336020] MPTCP token hash table entries: 4096 (order: 5, 98304 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.336744] UDP hash table entries: 2048 (order: 5, 131072 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.337402] UDP-Lite hash table entries: 2048 (order: 5, 131072 bytes, linear)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.338117] NET: Registered PF_UNIX/PF_LOCAL protocol family
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.338641] NET: Registered PF_XDP protocol family
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.339108] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.339649] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.340201] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.340796] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.341396] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.342049] pci 0000:00:01.0: PIIX3: Enabling Passive Release
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.342569] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.343593] ACPI: \_SB_.LNKD: Enabled at IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.344726] PCI: CLS 0 bytes, default 64
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.345213] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.345337] Trying to unpack rootfs image as initramfs...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.331570] Initialise system trusted keyrings
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.332082] workingset: timestamp_bits=40 max_order=18 bucket_order=0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.357343] Initialise system trusted keyrings
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.358023] workingset: timestamp_bits=40 max_order=20 bucket_order=0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.343532] Key type asymmetric registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.343918] Asymmetric key parser 'x509' registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.346389] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.347085] io scheduler mq-deadline registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.363849] Key type asymmetric registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.364250] Asymmetric key parser 'x509' registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.364705] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.365436] io scheduler mq-deadline registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.349361] io scheduler kyber registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.365856] io scheduler kyber registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.350012] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.350690] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.353755] Linux agpgart interface v0.103
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.370225] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.354172] ACPI: bus type drm_connector registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.370917] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.371962] Linux agpgart interface v0.103
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.372383] ACPI: bus type drm_connector registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.356437] usbcore: registered new interface driver usbserial_generic
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.373137] usbcore: registered new interface driver usbserial_generic
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.357007] usbserial: USB Serial support registered for generic
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.357551] intel_pstate: CPU model not supported
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.373716] usbserial: USB Serial support registered for generic
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.374276] intel_pstate: CPU model not supported
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.358014] drop_monitor: Initializing network drop monitor service
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.374765] drop_monitor: Initializing network drop monitor service
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.375407] NET: Registered PF_INET6 protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.360442] NET: Registered PF_INET6 protocol family
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.377217] Segment Routing with IPv6
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.361126] Segment Routing with IPv6
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.377580] In-situ OAM (IOAM) with IPv6
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.363363] In-situ OAM (IOAM) with IPv6
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.380091] IPI shorthand broadcast: enabled
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.363879] IPI shorthand broadcast: enabled
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.381660] sched_clock: Marking stable (305008103, 75985586)->(386665050, -5671361)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.382464] registered taskstats version 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.382931] Loading compiled-in X.509 certificates
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.367437] sched_clock: Marking stable (294016498, 73340525)->(388402155, -21045132)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.368194] registered taskstats version 1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.368657] Loading compiled-in X.509 certificates
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.386123] Demotion targets for Node 0: null
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.387037] Key type .fscrypt registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.387408] Key type fscrypt-provisioning registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.387899] ima: No TPM chip found, activating TPM-bypass!
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.388402] ima: Allocated hash algorithm: sha1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.388842] ima: No architecture policies found
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.389345] PM: Magic number: 2:15:942
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.390319] RAS: Correctable Errors collector initialized.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.374369] Demotion targets for Node 0: null
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.376403] Key type .fscrypt registered
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.376765] Key type fscrypt-provisioning registered
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.393508] clk: Disabling unused clocks
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.377243] ima: No TPM chip found, activating TPM-bypass!
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.377746] ima: Allocated hash algorithm: sha1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.393951] PM: genpd: Disabling unused power domains
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.378166] ima: No architecture policies found
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.380447] PM: Magic number: 2:15:942
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.381419] RAS: Correctable Errors collector initialized.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.388378] clk: Disabling unused clocks
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.388747] PM: genpd: Disabling unused power domains
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.472214] Freeing initrd memory: 27752K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.482039] Freeing unused decrypted memory: 2028K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.483573] Freeing unused kernel image (initmem) memory: 3636K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.484156] Write protecting the kernel read-only data: 32768k
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.468941] Freeing initrd memory: 27748K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.485394] Freeing unused kernel image (text/rodata gap) memory: 1276K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.486337] Freeing unused kernel image (rodata/data gap) memory: 776K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.492509] x86/mm: Checked W+X mappings: passed, no W+X pages found.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.493092] Run /init as init process
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.479001] Freeing unused decrypted memory: 2028K
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.480412] Freeing unused kernel image (initmem) memory: 3636K
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.480981] Write protecting the kernel read-only data: 32768k
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.482010] Freeing unused kernel image (text/rodata gap) memory: 1276K
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.499103] systemd[1]: Inserted module 'autofs4'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.482878] Freeing unused kernel image (rodata/data gap) memory: 776K
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.489040] x86/mm: Checked W+X mappings: passed, no W+X pages found.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.489607] Run /init as init process
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.510782] fuse: init (API version 7.45)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.494998] systemd[1]: Inserted module 'autofs4'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.515091] ACPI: \_SB_.LNKC: Enabled at IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.518112] ACPI: \_SB_.LNKA: Enabled at IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.519578] ACPI: \_SB_.LNKB: Enabled at IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.505352] fuse: init (API version 7.45)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.509279] ACPI: \_SB_.LNKC: Enabled at IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.512090] ACPI: \_SB_.LNKA: Enabled at IRQ 10
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.513539] ACPI: \_SB_.LNKB: Enabled at IRQ 11
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.537040] systemd[1]: Successfully made /usr/ read-only.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.527142] systemd[1]: Successfully made /usr/ read-only.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.874673] systemd[1]: systemd 260.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -BTF -XKBCOMMON +UTMP +LIBARCHIVE)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.885080] systemd[1]: Detected virtualization kvm.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.886886] systemd[1]: Detected architecture x86-64.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.888399] systemd[1]: Running in initrd.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.864683] systemd[1]: systemd 260.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -BTF -XKBCOMMON +UTMP +LIBARCHIVE)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.889846] systemd[1]: Initializing machine ID from random generator.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.874282] systemd[1]: Detected virtualization kvm.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.891248] systemd[1]: Hostname set to <seed>.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.875258] systemd[1]: Detected architecture x86-64.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.876111] systemd[1]: Running in initrd.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.876997] systemd[1]: Initializing machine ID from random generator.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.877950] systemd[1]: Hostname set to <alice>.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.904669] systemd[1]: Queued start job for default target Initrd Default Target.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.921153] systemd[1]: Queued start job for default target Initrd Default Target.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.907926] systemd[1]: Created slice Slice /system/modprobe.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.908557] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.909264] systemd[1]: Expecting device /dev/disk/by-label/nixos...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.909844] systemd[1]: Reached target Path Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.910324] systemd[1]: Reached target Slice Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.926690] systemd[1]: Created slice Slice /system/modprobe.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.910795] systemd[1]: Reached target Swaps.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.911214] systemd[1]: Reached target Timer Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.927306] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.911734] systemd[1]: Listening on D-Bus System Message Bus Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.928033] systemd[1]: Expecting device /dev/disk/by-label/nixos...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.928600] systemd[1]: Reached target Path Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.912381] systemd[1]: Listening on Journal Socket (/dev/log).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.929069] systemd[1]: Reached target Slice Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.912962] systemd[1]: Listening on Journal Sockets.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.929527] systemd[1]: Reached target Swaps.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.913512] systemd[1]: Listening on udev Control Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.929962] systemd[1]: Reached target Timer Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.914033] systemd[1]: Listening on udev Kernel Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.930479] systemd[1]: Listening on D-Bus System Message Bus Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.914561] systemd[1]: Reached target Socket Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.931122] systemd[1]: Listening on Journal Socket (/dev/log).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.931693] systemd[1]: Listening on Journal Sockets.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.915434] systemd[1]: Starting Create List of Static Device Nodes...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.932202] systemd[1]: Listening on udev Control Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.932715] systemd[1]: Listening on udev Kernel Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.933232] systemd[1]: Reached target Socket Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.934119] systemd[1]: Starting Create List of Static Device Nodes...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.918392] systemd[1]: Starting Load Kernel Module 9pnet_virtio...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.935116] systemd[1]: Starting Load Kernel Module 9pnet_virtio...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.921269] systemd[1]: Starting Load Kernel Module configfs...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.938041] systemd[1]: Starting Load Kernel Module configfs...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.939458] systemd[1]: Starting Journal Service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.941414] systemd[1]: Starting Load Kernel Modules...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.941922] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.929623] systemd[1]: Starting Journal Service...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.933465] systemd[1]: Starting Load Kernel Modules...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.933969] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.950083] systemd[1]: Starting Coldplug All udev Devices...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.958147] netfs: FS-Cache loaded
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.943003] netfs: FS-Cache loaded
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.961821] systemd[1]: Finished Create List of Static Device Nodes.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.946452] systemd[1]: Starting Coldplug All udev Devices...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.964331] systemd[1]: modprobe@configfs.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.965390] 9pnet: Installing 9P2000 support
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.967243] systemd[1]: Finished Load Kernel Module configfs.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.969153] systemd[1]: modprobe@9pnet_virtio.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.954196] 9pnet: Installing 9P2000 support
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.955577] systemd[1]: Finished Create List of Static Device Nodes.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.972021] systemd[1]: Finished Load Kernel Module 9pnet_virtio.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.972838] systemd[1]: Kernel Configuration File System skipped, unmet condition check ConditionPathExists=/sys/kernel/config
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.975153] systemd-journald[77]: Collecting audit messages is disabled.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.959505] systemd[1]: modprobe@configfs.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.976095] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.976162] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.981035] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.966381] systemd[1]: Finished Load Kernel Module configfs.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.967143] systemd[1]: Kernel Configuration File System skipped, unmet condition check ConditionPathExists=/sys/kernel/config
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.985478] systemd[1]: Finished Load Kernel Modules.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.969615] systemd-journald[67]: Collecting audit messages is disabled.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.987538] systemd[1]: Starting Apply Kernel Variables...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.974793] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.993047] systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.979559] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.999050] systemd[1]: Starting Create Static Device Nodes in /dev...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.924723] systemd-modules-load[78]: Using 2 probe threads
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.002220] systemd[1]: Started Journal Service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.927233] systemd-modules-load[78]: Inserted module 'virtio_balloon'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.983541] systemd[1]: modprobe@9pnet_virtio.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.928065] systemd-modules-load[78]: Inserted module 'virtio_gpu'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.988025] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.929320] systemd-modules-load[78]: Inserted module 'dm_mod'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.930412] systemd[1]: Finished Create Static Device Nodes in /dev.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.931035] systemd[1]: Finished Apply Kernel Variables.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.932200] systemd[1]: Reached target Preparation for Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.932731] systemd[1]: Reached target Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.935563] systemd[1]: Starting Create System Files and Directories...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.936128] systemd[1]: Starting Rule-based Manager for Device Events and Files...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.003381] systemd[1]: Finished Load Kernel Module 9pnet_virtio.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.006418] systemd[1]: Finished Load Kernel Modules.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.949192] systemd[1]: Finished Create System Files and Directories.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.951365] systemd-udevd[92]: Using default interface naming scheme 'v260'.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.011713] systemd[1]: Starting Apply Kernel Variables...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.953919] systemd[1]: Finished Coldplug All udev Devices.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.017657] systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.959048] systemd[1]: Started Rule-based Manager for Device Events and Files.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.959520] systemd[1]: Reached target System Initialization.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 0.959897] systemd[1]: Reached target Basic System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.023450] systemd[1]: Starting Create Static Device Nodes in /dev...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.032563] systemd[1]: Finished Apply Kernel Variables.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.962409] systemd-modules-load[68]: Inserted module 'dm_mod'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.036431] systemd[1]: Started Journal Service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.964085] systemd-modules-load[68]: Inserted module 'virtio_balloon'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.964643] systemd-modules-load[68]: Inserted module 'virtio_gpu'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.971084] systemd[1]: Finished Create Static Device Nodes in /dev.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.971576] systemd[1]: Reached target Preparation for Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.972090] systemd[1]: Reached target Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.975474] systemd[1]: Starting Create System Files and Directories...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.978053] systemd[1]: Starting Rule-based Manager for Device Events and Files...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 0.990213] systemd[1]: Finished Create System Files and Directories.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.003165] systemd-udevd[84]: Using default interface naming scheme 'v260'.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.004803] systemd[1]: Finished Coldplug All udev Devices.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.098191] virtio_blk virtio5: 2/0/0 default/read/poll queues
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.099208] virtio_blk virtio5: [vda] 8388608 512-byte logical blocks (4.29 GB/4.00 GiB)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.011340] systemd[1]: Started Rule-based Manager for Device Events and Files.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.012172] systemd[1]: Reached target System Initialization.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.012610] systemd[1]: Reached target Basic System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.118789] uhci_hcd 0000:00:01.2: UHCI Host Controller
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.119636] SCSI subsystem initialized
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.131583] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.132144] uhci_hcd 0000:00:01.2: detected 2 ports
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.132563] uhci_hcd 0000:00:01.2: irq 11, io port 0x0000c100
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.132645] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.138271] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.18
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.138851] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.139365] usb usb1: Product: UHCI Host Controller
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.139705] usb usb1: Manufacturer: Linux 6.18.37 uhci_hcd
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.140136] usb usb1: SerialNumber: 0000:00:01.2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.140559] serio: i8042 KBD port at 0x60,0x64 irq 1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.140927] serio: i8042 AUX port at 0x60,0x64 irq 12
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.069156] (udev-worker)[112]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.070689] (udev-worker)[101]: eth1: Config file /etc/systemd/network/40-eth1.link is applied to device based on potentially unpredictable interface name.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.071749] (udev-worker)[101]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.152599] hub 1-0:1.0: USB hub found
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.155053] hub 1-0:1.0: 2 ports detected
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.155806] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.080744] systemd[1]: Starting Virtual Console Setup...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.162406] scsi host0: ata_piix
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.086861] systemd[1]: Found device /dev/disk/by-label/nixos.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.163495] scsi host1: ata_piix
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.163805] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc1e0 irq 14 lpm-pol 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.163806] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc1e8 irq 15 lpm-pol 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.092222] systemd[1]: Reached target Initrd Root Device.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.096124] systemd[1]: Starting File System Check on /dev/disk/by-label/nixos...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.101257] systemd-vconsole-setup[124]: Configuration of first virtual console was skipped, ignoring remaining ones.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.102522] systemd[1]: Finished Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.105547] systemd-fsck[133]: nixos: clean, 12/262144 files, 37198/1048576 blocks
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.117490] systemd[1]: Finished File System Check on /dev/disk/by-label/nixos.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.185735] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.200610] virtio_blk virtio5: 1/0/0 default/read/poll queues
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.204024] serio: i8042 KBD port at 0x60,0x64 irq 1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.204400] serio: i8042 AUX port at 0x60,0x64 irq 12
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.212966] virtio_blk virtio5: [vda] 2097152 512-byte logical blocks (1.07 GB/1.00 GiB)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.228067] SCSI subsystem initialized
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.230435] uhci_hcd 0000:00:01.2: UHCI Host Controller
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.230804] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.244508] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.176203] systemd[1]: Starting Virtual Console Setup...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.251672] uhci_hcd 0000:00:01.2: detected 2 ports
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.252119] uhci_hcd 0000:00:01.2: irq 11, io port 0x0000c100
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.187865] (udev-worker)[96]: eth1: Config file /etc/systemd/network/40-eth1.link is applied to device based on potentially unpredictable interface name.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.265389] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.18
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.265931] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.266427] usb usb1: Product: UHCI Host Controller
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.266747] usb usb1: Manufacturer: Linux 6.18.37 uhci_hcd
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.267102] usb usb1: SerialNumber: 0000:00:01.2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.194449] systemd-vconsole-setup[100]: Configuration of first virtual console was skipped, ignoring remaining ones.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.195575] systemd[1]: Finished Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.196290] (udev-worker)[96]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.201247] (udev-worker)[91]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.204459] systemd[1]: Found device /dev/disk/by-label/nixos.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.205427] systemd[1]: Reached target Initrd Root Device.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.207831] systemd[1]: Starting File System Check on /dev/disk/by-label/nixos...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.284181] hub 1-0:1.0: USB hub found
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.284906] hub 1-0:1.0: 2 ports detected
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.222294] systemd-fsck[107]: nixos: clean, 12/65536 files, 13019/262144 blocks
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.227427] systemd[1]: Finished File System Check on /dev/disk/by-label/nixos.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.321069] ata2: found unknown device (class 0)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.321821] ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.322902] scsi 1:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.310276] scsi host0: ata_piix
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.311156] scsi host1: ata_piix
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.312057] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc1e0 irq 14 lpm-pol 0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.312802] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc1e8 irq 15 lpm-pol 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.356452] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.378808] cdrom: Uniform CD-ROM driver Revision: 3.20
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.385086] usb 1-1: new full-speed USB device number 2 using uhci_hcd
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.465965] ata2: found unknown device (class 0)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.470514] ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.480597] scsi 1:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.505405] usb 1-1: new full-speed USB device number 2 using uhci_hcd
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.506884] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.516480] cdrom: Uniform CD-ROM driver Revision: 3.20
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.552717] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.553523] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.554302] usb 1-1: Product: QEMU USB Tablet
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.554808] usb 1-1: Manufacturer: QEMU
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.555291] usb 1-1: SerialNumber: 28754-0000:00:01.2-1
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.579969] hid: raw HID events driver (C) Jiri Kosina
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.586209] usbcore: registered new interface driver usbhid
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.586705] usbhid: USB HID core driver
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.588915] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.589704] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.671583] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.675041] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.679011] usb 1-1: Product: QEMU USB Tablet
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.680684] usb 1-1: Manufacturer: QEMU
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.680972] usb 1-1: SerialNumber: 28754-0000:00:01.2-1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.695408] hid: raw HID events driver (C) Jiri Kosina
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.702085] usbcore: registered new interface driver usbhid
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.702946] usbhid: USB HID core driver
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.705098] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.706007] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.889621] systemd[1]: Mounting /sysroot...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.879173] systemd[1]: Mounting /sysroot...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.017441] EXT4-fs (vda): mounted filesystem 81f1a6dd-e270-4094-b614-08c108703c85 r/w with ordered data mode. Quota mode: none.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.945967] systemd[1]: Mounted /sysroot.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.946703] systemd[1]: Reached target Initrd Root File System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.948054] systemd[1]: Starting Mountpoints Configured in the Real Root...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.042788] EXT4-fs (vda): mounted filesystem dbc2f082-98d3-4337-8a3f-7c1045b0e52d r/w with ordered data mode. Quota mode: none.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.968410] systemd[1]: Mounted /sysroot.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.954802] systemd-sysroot-fstab-check[126]: /sysroot should be mounted in the initrd, will request daemon-reload.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.968865] systemd[1]: Reached target Initrd Root File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.969540] systemd[1]: Mounting /sysroot/nix/.ro-store...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.970402] systemd[1]: Mounting /sysroot/nix/.rw-store...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.957043] systemd[1]: Reload requested from client PID 126 ('systemd-sysroot') (unit initrd-parse-etc.service)...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.957746] systemd[1]: Reloading...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.972098] systemd[1]: Mounting /sysroot/run...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.979436] systemd[1]: Mounting /sysroot/tmp/shared...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.982098] systemd[1]: Mounting /sysroot/tmp/xchg...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.985565] systemd[1]: Starting Mountpoints Configured in the Real Root...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.988610] systemd[1]: Mounted /sysroot/nix/.rw-store.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.988997] systemd[1]: Mounted /sysroot/run.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.068002] 9p: Installing v9fs 9p2000 file system support
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.995077] systemd[1]: Starting rw-sysroot-nix-store.service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.995607] systemd-sysroot-fstab-check[153]: /sysroot should be mounted in the initrd, will request daemon-reload.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.998399] systemd[1]: Mounted /sysroot/tmp/shared.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 1.999377] systemd[1]: Mounted /sysroot/nix/.ro-store.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.000720] systemd[1]: Mounted /sysroot/tmp/xchg.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.001071] systemd[1]: Reload requested from client PID 153 ('systemd-sysroot') (unit initrd-parse-etc.service)...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.001736] systemd[1]: Reloading...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 1.996839] systemd[1]: Reloading finished in 40 ms.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.000726] systemd-sysroot-fstab-check[126]: Requesting initrd-fs.target/start/replace...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.001944] systemd[1]: Load Kernel Module 9pnet_virtio skipped, unmet condition check ConditionKernelModuleLoaded=!9pnet_virtio
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.002737] systemd-sysroot-fstab-check[126]: Requesting swap.target/start/replace...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.004699] systemd[1]: initrd-parse-etc.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.005413] systemd[1]: Finished Mountpoints Configured in the Real Root.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.005906] systemd[1]: initrd-parse-etc.service: Triggering OnSuccess= dependencies.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.035233] systemd[1]: Reloading finished in 34 ms.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.041696] systemd-sysroot-fstab-check[153]: Requesting initrd-fs.target/start/replace...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.042285] systemd[1]: rw-sysroot-nix-store.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.042763] systemd[1]: Finished rw-sysroot-nix-store.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.043652] systemd-sysroot-fstab-check[153]: Requesting swap.target/start/replace...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.045481] systemd[1]: Starting rw-sysroot-nix-store.service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.046082] systemd[1]: initrd-parse-etc.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.046653] systemd[1]: Finished Mountpoints Configured in the Real Root.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.047131] systemd[1]: initrd-parse-etc.service: Triggering OnSuccess= dependencies.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.060776] systemd[1]: rw-sysroot-nix-store.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.061299] systemd[1]: Finished rw-sysroot-nix-store.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.889864] systemd[1]: Mounting /sysroot/nix/store...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.878060] systemd[1]: Mounting /sysroot/nix/.ro-store...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.880602] systemd[1]: Mounting /sysroot/nix/.rw-store...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.889193] systemd[1]: Mounting /sysroot/run...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.895105] systemd[1]: Mounting /sysroot/tmp/shared...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.898086] systemd[1]: Mounting /sysroot/tmp/xchg...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.913464] systemd[1]: Mounted /sysroot/nix/store.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.914043] systemd[1]: Reached target Initrd File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.916315] systemd[1]: Starting Find NixOS closure...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.916683] systemd[1]: Starting Create Volatile Files and Directories in the Real Root...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.909719] systemd[1]: Mounted /sysroot/nix/.rw-store.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.984676] 9p: Installing v9fs 9p2000 file system support
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.925807] systemd[1]: Finished Create Volatile Files and Directories in the Real Root.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.926725] systemd[1]: sysroot-run-credentials-systemd\x2dtmpfiles\x2dsetup\x2dsysroot.service.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.915167] systemd[1]: Mounted /sysroot/run.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.929562] systemd[1]: Finished Find NixOS closure.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.930026] systemd[1]: Reached target Initrd Default Target.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.916672] systemd[1]: Mounted /sysroot/tmp/shared.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.931054] systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.918627] systemd[1]: Mounted /sysroot/nix/.ro-store.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.919141] systemd[1]: Mounted /sysroot/tmp/xchg.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.921200] systemd[1]: Starting rw-sysroot-nix-store.service...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.926956] systemd[1]: rw-sysroot-nix-store.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.927690] systemd[1]: Finished rw-sysroot-nix-store.service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.928748] systemd[1]: Mounting /sysroot/nix/store...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.945083] systemd[1]: Stopped target Initrd Default Target.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.945972] systemd[1]: Stopped target Basic System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.946350] systemd[1]: Stopped target Initrd Root Device.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.946701] systemd[1]: Stopped target Path Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.947048] systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.947514] systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.948017] systemd[1]: Stopped target Slice Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.948349] systemd[1]: Stopped target Socket Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.948674] systemd[1]: Stopped target System Initialization.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.950085] systemd[1]: Stopped target Swaps.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.950408] systemd[1]: Stopped target Timer Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.950737] systemd[1]: dbus.socket: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.951137] systemd[1]: Closed D-Bus System Message Bus Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.951516] systemd[1]: initrd-find-nixos-closure.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.951981] systemd[1]: Stopped Find NixOS closure.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.952320] systemd[1]: Load Kernel Module 9pnet_virtio skipped, unmet condition check ConditionKernelModuleLoaded=!9pnet_virtio
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.953861] systemd[1]: Starting rw-sysroot-nix-store.service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.954545] systemd[1]: systemd-sysctl.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.954994] systemd[1]: Stopped Apply Kernel Variables.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.955535] systemd[1]: systemd-modules-load.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.942129] systemd[1]: Mounted /sysroot/nix/store.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.955994] systemd[1]: Stopped Load Kernel Modules.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.956359] systemd[1]: systemd-tmpfiles-setup-sysroot.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.942788] systemd[1]: Reached target Initrd File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.957095] systemd[1]: Stopped Create Volatile Files and Directories in the Real Root.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.957574] systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.944076] systemd[1]: Starting Find NixOS closure...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.958315] systemd[1]: Stopped Create System Files and Directories.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.958726] systemd[1]: Stopped target Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.959220] systemd[1]: Stopped target Preparation for Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.959865] systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.960361] systemd[1]: Stopped Coldplug All udev Devices.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.960710] systemd[1]: Stopping Rule-based Manager for Device Events and Files...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.961187] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.961638] systemd[1]: Stopped Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.961985] systemd[1]: initrd-cleanup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.948179] systemd[1]: Starting Create Volatile Files and Directories in the Real Root...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.962422] systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.962830] systemd[1]: systemd-udevd.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.963247] systemd[1]: Stopped Rule-based Manager for Device Events and Files.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.963701] systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.964259] systemd[1]: Closed udev Control Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.964632] systemd[1]: Starting Cleanup udev Database...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.964997] systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.965479] systemd[1]: Stopped Create Static Device Nodes in /dev.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.965879] systemd[1]: systemd-tmpfiles-setup-dev-early.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.966385] systemd[1]: Stopped Create Static Device Nodes in /dev gracefully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.966835] systemd[1]: kmod-static-nodes.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.967407] systemd[1]: Stopped Create List of Static Device Nodes.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.968504] systemd[1]: rw-sysroot-nix-store.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.969379] systemd[1]: Finished rw-sysroot-nix-store.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.969761] systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.970297] systemd[1]: Finished Cleanup udev Database.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.956590] systemd[1]: Finished Create Volatile Files and Directories in the Real Root.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.970894] systemd[1]: Reached target Switch Root.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 2.971341] systemd[1]: Starting NixOS Activation...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.960074] systemd[1]: Finished Find NixOS closure.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.961102] systemd[1]: Reached target Initrd Default Target.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.961917] systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.970928] systemd[1]: initrd-cleanup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.971713] systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.973170] systemd[1]: Stopped target Initrd Default Target.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.974101] systemd[1]: Stopped target Basic System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.974533] systemd[1]: Stopped target Initrd Root Device.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.974981] systemd[1]: Stopped target Path Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.975408] systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.975989] systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.977089] systemd[1]: Stopped target Slice Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.977515] systemd[1]: Stopped target Socket Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.977931] systemd[1]: Stopped target System Initialization.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.978412] systemd[1]: Stopped target Swaps.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.978931] systemd[1]: Stopped target Timer Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.979368] systemd[1]: dbus.socket: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.980083] systemd[1]: Closed D-Bus System Message Bus Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.980572] systemd[1]: initrd-find-nixos-closure.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.982094] systemd[1]: Stopped Find NixOS closure.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.982515] systemd[1]: Load Kernel Module 9pnet_virtio skipped, unmet condition check ConditionKernelModuleLoaded=!9pnet_virtio
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.983346] systemd[1]: Starting rw-sysroot-nix-store.service...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.983822] systemd[1]: systemd-sysctl.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.984366] systemd[1]: Stopped Apply Kernel Variables.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.984816] systemd[1]: systemd-modules-load.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.985400] systemd[1]: Stopped Load Kernel Modules.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.985882] systemd[1]: systemd-tmpfiles-setup-sysroot.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.986550] systemd[1]: Stopped Create Volatile Files and Directories in the Real Root.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.987689] systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.988273] systemd[1]: Stopped Create System Files and Directories.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.989025] systemd[1]: Stopped target Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.989627] systemd[1]: Stopped target Preparation for Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.990408] systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.991847] systemd[1]: Stopped Coldplug All udev Devices.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.992573] systemd[1]: Stopping Rule-based Manager for Device Events and Files...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.993182] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.993743] systemd[1]: Stopped Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 2.999910] systemd[1]: systemd-udevd.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.003684] systemd[1]: Stopped Rule-based Manager for Device Events and Files.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.004213] systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.004691] systemd[1]: Closed udev Control Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.005944] systemd[1]: Starting Cleanup udev Database...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.006385] systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.006879] systemd[1]: Stopped Create Static Device Nodes in /dev.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.007307] systemd[1]: systemd-tmpfiles-setup-dev-early.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.007815] systemd[1]: Stopped Create Static Device Nodes in /dev gracefully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.008317] systemd[1]: kmod-static-nodes.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.008759] systemd[1]: Stopped Create List of Static Device Nodes.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.010087] systemd[1]: rw-sysroot-nix-store.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.010847] systemd[1]: Finished rw-sysroot-nix-store.service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.018658] systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.019189] systemd[1]: Finished Cleanup udev Database.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.019532] systemd[1]: Reached target Switch Root.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.020282] systemd[1]: Starting NixOS Activation...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.055536] initrd-nixos-activation-start[205]: booting system configuration /nix/store/jcgy076jfjnnk8n14zwp0zf0w78xpg7i-nixos-system-seed-test
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.074932] initrd-nixos-activation-start[205]: running activation script...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.067341] initrd-nixos-activation-start[175]: booting system configuration /nix/store/nvxgz92d651dr6qnlws7ymr2czc7giva-nixos-system-alice-test
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.089981] initrd-nixos-activation-start[175]: running activation script...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.236359] initrd-nixos-activation-start[228]: setting up /etc...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.225618] initrd-nixos-activation-start[198]: setting up /etc...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.305189] systemd[1]: initrd-nixos-activation.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.305937] systemd[1]: Finished NixOS Activation.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.306895] systemd[1]: Starting Switch Root...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.322509] systemd[1]: initrd-nixos-activation.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.323128] systemd[1]: Finished NixOS Activation.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.323992] systemd[1]: Starting Switch Root...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.314958] systemd[1]: Switching root.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.332265] systemd[1]: Switching root.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.397447] systemd-journald[67]: Received SIGTERM from PID 1 (systemd).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.425320] systemd-journald[77]: Received SIGTERM from PID 1 (systemd).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.490729] NET: Registered PF_VSOCK protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.475915] NET: Registered PF_VSOCK protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.832290] systemd[1]: systemd 260.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -BTF -XKBCOMMON +UTMP +LIBARCHIVE)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.838214] systemd[1]: Detected virtualization kvm.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.838704] systemd[1]: Detected architecture x86-64.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.853543] systemd[1]: systemd 260.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -BTF -XKBCOMMON +UTMP +LIBARCHIVE)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.839090] systemd[1]: Detected first boot.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.855485] systemd[1]: Detected virtualization kvm.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.855838] systemd[1]: Detected architecture x86-64.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.856237] systemd[1]: Detected first boot.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.857260] systemd[1]: Received regular credentials: dev.radicle.node.secret
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 3.841021] systemd[1]: Initializing machine ID from random generator.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.857732] systemd[1]: Acquired 1 regular credentials, 0 untrusted credentials.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.859308] systemd[1]: Initializing machine ID from random generator.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.954469] systemd[1]: bpf-restrict-fs: LSM BPF program attached
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 3.997607] systemd[1]: Applying preset policy.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.015868] systemd[1]: bpf-restrict-fs: LSM BPF program attached
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.067836] systemd[1]: Applying preset policy.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.132537] systemd[1]: Populated /etc with preset unit settings.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.184998] systemd[1]: Populated /etc with preset unit settings.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.306603] systemd[1]: initrd-switch-root.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.307503] systemd[1]: Stopped initrd-switch-root.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.308764] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.309904] systemd[1]: Created slice Slice /system/getty.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.310660] systemd[1]: Created slice User and Session Slice.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.311218] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.311910] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.312556] systemd[1]: Expecting device /dev/hvc0...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.313056] systemd[1]: Expecting device /dev/ttyS0...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.313518] systemd[1]: Reached target Local Encrypted Volumes.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.314028] systemd[1]: Stopped target initrd-fs.target.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.314485] systemd[1]: Stopped target initrd-root-fs.target.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.314979] systemd[1]: Stopped target initrd-switch-root.target.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.315501] systemd[1]: Reached target Virtual Machines and Containers.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.316068] systemd[1]: Reached target Path Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.316502] systemd[1]: Reached target Remote File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.316995] systemd[1]: Reached target Slice Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.317430] systemd[1]: Reached target Swaps.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.318687] systemd[1]: Listening on Query the User Interactively for a Password.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.320321] systemd[1]: Listening on Process Core Dump Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.321540] systemd[1]: Listening on Credential Encryption/Decryption.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.322885] systemd[1]: Listening on Factory Reset Management.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.324516] systemd[1]: Starting Journal Log Access Socket...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.325283] systemd[1]: Listening on Journal Audit Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.326732] systemd[1]: Listening on Console Output Muting Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.327334] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.327868] systemd[1]: TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.328538] systemd[1]: Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.332009] systemd[1]: Listening on Disk Repartitioning Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.332645] systemd[1]: Listening on udev Control Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.333179] systemd[1]: Listening on udev Varlink Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.335012] systemd[1]: Mounting Huge Pages File System...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.336509] systemd[1]: Mounting POSIX Message Queue File System...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.338120] systemd[1]: Mounting Kernel Debug File System...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.339561] systemd[1]: Mounting Kernel Trace File System...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.325102] systemd[1]: initrd-switch-root.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.325833] systemd[1]: Stopped initrd-switch-root.service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.327199] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.344174] systemd[1]: Starting Create List of Static Device Nodes...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.328244] systemd[1]: Created slice Slice /system/getty.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.328929] systemd[1]: Created slice User and Session Slice.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.344865] systemd[1]: Load Kernel Module 9pnet_virtio skipped, unmet condition check ConditionKernelModuleLoaded=!9pnet_virtio
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.329423] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.330008] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.330580] systemd[1]: Expecting device /dev/hvc0...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.330944] systemd[1]: Expecting device /dev/ttyS0...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.331359] systemd[1]: Reached target Local Encrypted Volumes.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.331780] systemd[1]: Stopped target initrd-fs.target.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.347959] systemd[1]: Starting Load Kernel Module configfs...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.332154] systemd[1]: Stopped target initrd-root-fs.target.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.332568] systemd[1]: Stopped target initrd-switch-root.target.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.348493] systemd[1]: Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.332998] systemd[1]: Reached target Virtual Machines and Containers.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.333490] systemd[1]: Reached target Path Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.349506] systemd[1]: Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.333859] systemd[1]: Reached target Remote File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.334261] systemd[1]: Reached target Slice Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.334640] systemd[1]: Reached target Swaps.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.350603] systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.336004] systemd[1]: Listening on Query the User Interactively for a Password.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.337673] systemd[1]: Listening on Process Core Dump Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.354460] systemd[1]: Mounting FUSE Control File System...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.338905] systemd[1]: Listening on Credential Encryption/Decryption.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.355381] systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.340209] systemd[1]: Listening on Factory Reset Management.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.341882] systemd[1]: Starting Journal Log Access Socket...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.358551] systemd[1]: Starting Journal Service...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.342694] systemd[1]: Listening on Journal Audit Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.344078] systemd[1]: Listening on Console Output Muting Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.344669] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.345201] systemd[1]: TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.345949] systemd[1]: Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.349602] systemd[1]: Listening on Disk Repartitioning Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.350129] systemd[1]: Listening on udev Control Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.350578] systemd[1]: Listening on udev Varlink Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.352051] systemd[1]: Mounting Huge Pages File System...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.353441] systemd[1]: Mounting POSIX Message Queue File System...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.370741] systemd[1]: Starting Load Kernel Modules...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.354784] systemd[1]: Mounting Kernel Debug File System...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.359753] systemd[1]: Mounting Kernel Trace File System...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.376076] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.363573] systemd[1]: Starting Create List of Static Device Nodes...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.380167] systemd[1]: Starting Remount Root and Kernel File Systems...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.364075] systemd[1]: Load Kernel Module 9pnet_virtio skipped, unmet condition check ConditionKernelModuleLoaded=!9pnet_virtio
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.382001] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.385217] systemd[1]: Starting Coldplug All udev Devices...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.369254] systemd[1]: Starting Load Kernel Module configfs...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.387213] systemd[1]: Listening on Journal Log Access Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.370820] systemd[1]: Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.388173] systemd[1]: Mounted Huge Pages File System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.372036] systemd[1]: Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.373064] systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.390059] systemd[1]: Mounted POSIX Message Queue File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.390548] systemd[1]: Mounted Kernel Debug File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.391029] systemd[1]: Mounted Kernel Trace File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.392835] systemd[1]: Finished Create List of Static Device Nodes.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.377754] systemd[1]: Mounting FUSE Control File System...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.393796] systemd[1]: modprobe@configfs.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.394915] systemd[1]: Finished Load Kernel Module configfs.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.378833] systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.395736] systemd[1]: Mounted FUSE Control File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.397999] systemd[1]: Mounting Kernel Configuration File System...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.399704] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.411141] loop: module loaded
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.397832] systemd[1]: Starting Journal Service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.414103] systemd[1]: Finished Load Kernel Modules.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.415075] EXT4-fs (vda): re-mounted dbc2f082-98d3-4337-8a3f-7c1045b0e52d.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.417532] systemd[1]: Starting Firewall...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.418880] systemd[1]: Starting Apply Kernel Variables...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.420146] systemd[1]: Finished Remount Root and Kernel File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.420826] systemd[1]: Mounted Kernel Configuration File System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.408741] systemd[1]: Starting Load Kernel Modules...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.421536] systemd[1]: Listening on Disk Image Download Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.416570] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.421610] systemd[1]: Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.423045] systemd[1]: Starting Load/Save OS Random Seed...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.423066] systemd[1]: TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.428046] systemd-journald[302]: Collecting audit messages is enabled.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.423501] systemd[1]: Starting Remount Root and Kernel File Systems...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.427559] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.434158] systemd-journald[267]: Collecting audit messages is enabled.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.440325] systemd[1]: Starting Coldplug All udev Devices...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.457549] systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.460389] systemd[1]: Started Journal Service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.445829] loop: module loaded
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.387693] systemd[1]: Queued start job for default target Multi-User System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.374276] systemd[1]: Queued start job for default target Multi-User System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.388574] systemd[1]: systemd-journald.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.375777] systemd[1]: systemd-journald.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.389960] systemd-modules-load[303]: Using 2 probe threads
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.377532] systemd-modules-load[268]: Inserted module 'loop'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.391447] systemd-modules-load[303]: Inserted module 'loop'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.393128] systemd-oomd[304]: No swap; memory pressure usage will be degraded
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.454435] systemd[1]: Started Journal Service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.394789] systemd[1]: Starting Flush Journal to Persistent Storage...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.386659] systemd[1]: Listening on Journal Log Access Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.387803] systemd[1]: Mounted Huge Pages File System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.388267] systemd[1]: Mounted POSIX Message Queue File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.400850] systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.402692] systemd[1]: Finished Coldplug All udev Devices.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.389246] systemd[1]: Mounted Kernel Debug File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.403344] systemd[1]: Finished Apply Kernel Variables.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.390390] systemd[1]: Mounted Kernel Trace File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.405898] systemd[1]: Starting Create Static Device Nodes in /dev...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.392724] systemd[1]: Finished Create List of Static Device Nodes.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.393286] systemd[1]: modprobe@configfs.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.393769] systemd[1]: Finished Load Kernel Module configfs.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.394190] systemd[1]: Mounted FUSE Control File System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.407993] systemd[1]: Finished Load/Save OS Random Seed.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.408608] systemd[1]: Reached target First Boot Complete.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.395461] systemd[1]: Finished Load Kernel Modules.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.470333] EXT4-fs (vda): re-mounted 81f1a6dd-e270-4094-b614-08c108703c85.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.488610] systemd-journald[302]: Received client request to flush runtime journal.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.403523] systemd[1]: Finished Remount Root and Kernel File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.407463] systemd[1]: Listening on Disk Image Download Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.410907] systemd[1]: Mounting Kernel Configuration File System...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.414951] systemd[1]: Starting Firewall...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.417670] systemd[1]: Starting Flush Journal to Persistent Storage...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.418236] systemd[1]: Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.432642] systemd[1]: Starting Load/Save OS Random Seed...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.433825] systemd-oomd[270]: No swap; memory pressure usage will be degraded
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.447784] systemd[1]: Finished Create Static Device Nodes in /dev.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.448497] systemd[1]: Reached target Preparation for Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.449101] systemd[1]: Starting Rule-based Manager for Device Events and Files...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.450304] systemd[1]: Finished Flush Journal to Persistent Storage.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.443689] systemd[1]: Starting Apply Kernel Variables...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.446664] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.448696] systemd[1]: TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.450245] systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.466531] systemd-udevd[340]: Using default interface naming scheme 'v260'.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.538032] systemd-journald[267]: Received client request to flush runtime journal.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.507045] systemd[1]: Started Rule-based Manager for Device Events and Files.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.548778] systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.565355] systemd[1]: Condition check resulted in /dev/hvc0 being skipped.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.559175] systemd[1]: Mounted Kernel Configuration File System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.559898] systemd[1]: Finished Load/Save OS Random Seed.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.560880] systemd[1]: Reached target First Boot Complete.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.561414] systemd[1]: Finished Apply Kernel Variables.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.564127] systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.577398] systemd[1]: Condition check resulted in /dev/ttyS0 being skipped.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.564723] systemd[1]: Starting Create Static Device Nodes in /dev...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.566201] systemd[1]: Finished Flush Journal to Persistent Storage.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.580675] systemd[1]: Finished Create Static Device Nodes in /dev.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.583090] systemd[1]: Finished Coldplug All udev Devices.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.583516] systemd[1]: Reached target Preparation for Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.584703] systemd[1]: Starting Rule-based Manager for Device Events and Files...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.603888] (udev-worker)[381]: eth1: Config file /etc/systemd/network/40-eth1.link is applied to device based on potentially unpredictable interface name.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.605423] (udev-worker)[381]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.614546] (udev-worker)[395]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.619079] systemd-udevd[309]: Using default interface naming scheme 'v260'.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.640547] systemd[1]: Condition check resulted in Virtio network device being skipped.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.641688] systemd[1]: Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.643189] systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.719559] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.645723] systemd[1]: Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.646581] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.647951] systemd[1]: TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.738008] ACPI: button: Power Button [PWRF]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.747774] rtc_cmos 00:05: RTC can wake from S4
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.748759] Floppy drive(s): fd0 is 2.88M AMI BIOS
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.749780] rtc_cmos 00:05: registered as rtc0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.750269] rtc_cmos 00:05: setting system clock to 2026-07-07T15:55:21 UTC (1783439721)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.663207] systemd[1]: Started Rule-based Manager for Device Events and Files.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.755142] parport_pc 00:03: reported by Plug and Play ACPI
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.755700] parport0: PC-style at 0x378, irq 7 [PCSPP(,...)]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.756429] systemd-journald[302]: Time jumped backwards, rotating.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.760154] rtc_cmos 00:05: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.761451] FDC 0 is a S82078B
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.767140] mousedev: PS/2 mouse device common for all mice
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.772087] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.772746] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.776973] bochs-drm 0000:00:02.0: vgaarb: deactivate vga console
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.787681] input: QEMU Virtio Keyboard as /devices/pci0000:00/0000:00:0a.0/virtio7/input/input4
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.788989] Console: switching to colour dummy device 80x25
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.789816] [drm] Found bochs VGA, ID 0xb0c5.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.796851] [drm] Framebuffer size 16384 kB @ 0xfd000000, mmio @ 0xfebd0000.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.798089] bochs-drm 0000:00:02.0: [drm] Registered 1 planes with drm panic
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.798453] [drm] Initialized bochs-drm 1.0.0 for 0000:00:02.0 on minor 0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.807466] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input6
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.808037] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input5
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.809715] fbcon: bochs-drmdrmfb (fb0) is primary device
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.825186] Console: switching to colour frame buffer device 160x50
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.736165] systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.826418] bochs-drm 0000:00:02.0: [drm] fb0: bochs-drmdrmfb frame buffer device
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.762734] systemd[1]: Starting Virtual Console Setup...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.851175] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.853538] ppdev: user-space parallel port driver
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.789674] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.777912] systemd[1]: Condition check resulted in /dev/hvc0 being skipped.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.791992] systemd[1]: Stopped Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.792570] systemd[1]: Starting Virtual Console Setup...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.802658] systemd[1]: Finished Firewall.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.790875] systemd[1]: Condition check resulted in /dev/ttyS0 being skipped.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.806559] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.808777] systemd[1]: Stopped Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.810651] systemd[1]: Starting Virtual Console Setup...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.814683] (udev-worker)[354]: eth1: Config file /etc/systemd/network/40-eth1.link is applied to device based on potentially unpredictable interface name.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.816142] (udev-worker)[354]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.817098] (udev-worker)[351]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.873098] systemd[1]: Condition check resulted in Virtio network device being skipped.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.873657] systemd[1]: Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.874344] systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.875274] systemd[1]: Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.875957] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.876523] systemd[1]: TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 4.916050] systemd[1]: Finished Firewall.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.937410] systemd-vconsole-setup[474]: Configuration of first virtual console was skipped, ignoring remaining ones.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 4.938379] systemd[1]: Finished Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.004928] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.019112] rtc_cmos 00:05: RTC can wake from S4
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.019869] mousedev: PS/2 mouse device common for all mice
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.022535] ACPI: button: Power Button [PWRF]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.029791] Floppy drive(s): fd0 is 2.88M AMI BIOS
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.030573] rtc_cmos 00:05: registered as rtc0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.030937] rtc_cmos 00:05: setting system clock to 2026-07-07T15:55:21 UTC (1783439721)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.031673] systemd-journald[267]: Time jumped backwards, rotating.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.035743] parport_pc 00:03: reported by Plug and Play ACPI
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.036187] parport0: PC-style at 0x378, irq 7 [PCSPP(,...)]
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.040603] rtc_cmos 00:05: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.056439] FDC 0 is a S82078B
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.065217] bochs-drm 0000:00:02.0: vgaarb: deactivate vga console
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.069657] input: QEMU Virtio Keyboard as /devices/pci0000:00/0000:00:0a.0/virtio7/input/input4
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.073935] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.073962] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.096043] Console: switching to colour dummy device 80x25
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.099782] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input6
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.099900] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input5
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.123477] [drm] Found bochs VGA, ID 0xb0c5.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.123682] [drm] Framebuffer size 16384 kB @ 0xfd000000, mmio @ 0xfebd0000.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.127607] bochs-drm 0000:00:02.0: [drm] Registered 1 planes with drm panic
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.127930] [drm] Initialized bochs-drm 1.0.0 for 0000:00:02.0 on minor 0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.061988] systemd[1]: Starting Virtual Console Setup...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.153821] fbcon: bochs-drmdrmfb (fb0) is primary device
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.159508] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.163178] ppdev: user-space parallel port driver
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.192089] Console: switching to colour frame buffer device 160x50
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.202182] bochs-drm 0000:00:02.0: [drm] fb0: bochs-drmdrmfb frame buffer device
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.130533] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.131927] systemd[1]: Stopped Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.133094] systemd[1]: Starting Virtual Console Setup...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.232299] systemd[1]: Mounting /run/wrappers...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.248208] systemd[1]: Mounted /run/wrappers.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.248737] systemd[1]: Reached target Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.249169] systemd[1]: Listening on Boot Loader Control Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.250275] systemd[1]: Starting register-nix-paths.service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.251200] systemd[1]: Starting Create SUID/SGID Wrappers...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.251664] systemd[1]: Update Boot Loader Random Seed skipped, no trigger condition checks were met.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.253156] systemd[1]: Starting Save Transient machine-id to Disk...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.254234] systemd[1]: Starting Create System Files and Directories...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.253154] systemd[1]: Mounting /run/wrappers...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.255022] systemd-vconsole-setup[423]: Configuration of first virtual console was skipped, ignoring remaining ones.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.257378] systemd[1]: Finished Virtual Console Setup.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.268297] systemd[1]: Mounted /run/wrappers.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.281941] systemd[1]: Finished Create System Files and Directories.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.268916] systemd[1]: Reached target Local File Systems.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.270208] systemd[1]: Listening on Boot Loader Control Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.284106] systemd[1]: Starting Rebuild Journal Catalog...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.285221] systemd[1]: Starting Record System Boot/Shutdown in UTMP...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.272035] systemd[1]: Starting register-nix-paths.service...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.273052] systemd[1]: Starting Create SUID/SGID Wrappers...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.273492] systemd[1]: Update Boot Loader Random Seed skipped, no trigger condition checks were met.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.275104] systemd[1]: Starting Save Transient machine-id to Disk...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.278218] systemd[1]: Starting Create System Files and Directories...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.300358] systemd[1]: Finished Record System Boot/Shutdown in UTMP.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.307632] systemd[1]: etc-machine\x2did.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.308776] systemd[1]: Finished Save Transient machine-id to Disk.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.312298] systemd[1]: Finished Rebuild Journal Catalog.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.314184] systemd[1]: Starting Update is Completed...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.329789] systemd[1]: Finished Update is Completed.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.318766] systemd[1]: etc-machine\x2did.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.319991] systemd[1]: Finished Save Transient machine-id to Disk.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.328473] systemd[1]: Finished Create System Files and Directories.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.331440] systemd[1]: Starting Rebuild Journal Catalog...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.333733] systemd[1]: Starting Record System Boot/Shutdown in UTMP...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.356204] systemd[1]: Finished Record System Boot/Shutdown in UTMP.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.372782] systemd[1]: Finished Rebuild Journal Catalog.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.375547] systemd[1]: Starting Update is Completed...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.389724] systemd[1]: suid-sgid-wrappers.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.390294] systemd[1]: Finished Create SUID/SGID Wrappers.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.392185] systemd[1]: Finished Update is Completed.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.458763] systemd[1]: suid-sgid-wrappers.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.459771] systemd[1]: Finished Create SUID/SGID Wrappers.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.505852] systemd[1]: Finished register-nix-paths.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.506378] systemd[1]: Reached target System Initialization.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.506939] systemd[1]: Started Discard unused filesystem blocks once a week.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.507400] systemd[1]: Started Periodic radicle-devcontainer-ci cleanup (devcontainer).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.507896] systemd[1]: Started Daily Cleanup of Temporary Directories.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.508308] systemd[1]: Reached target Timer Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.508768] systemd[1]: Listening on D-Bus System Message Bus Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.509276] systemd[1]: Listening on Nix Daemon Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.510642] systemd[1]: Starting Podman API Socket...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.511054] systemd[1]: Listening on Hostname Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.511444] systemd[1]: Listening on Virtual Machine and Container Registration Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.513187] systemd[1]: Starting D-Bus System Message Bus...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.513824] systemd[1]: Listening on Podman API Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.514200] systemd[1]: Reached target Socket Units.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.536588] dbus-broker-launch[552]: Looking up NSS user entry for 'systemd-timesync'...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.539435] dbus-broker-launch[552]: NSS returned no entry for 'systemd-timesync'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.539930] dbus-broker-launch[552]: Invalid user-name in /nix/store/gfagdhy7x63papcfbnbgyq20zg6msd0d-system-path/share/dbus-1/system.d/org.freedesktop.timesync1.conf +16: user="systemd-timesync"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.546680] systemd[1]: Started D-Bus System Message Bus.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.554847] dbus-broker-launch[552]: Ready
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.555941] systemd[1]: Reached target Basic System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.557182] systemd[1]: Started backdoor.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.558126] systemd[1]: Starting Import lastlog data into lastlog2 database...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.559497] systemd[1]: Starting Name Service Cache Daemon (nsncd)...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.560814] systemd[1]: Starting Post-Boot Actions...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.562260] systemd[1]: Started Reset console on configuration changes.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.551733] systemd[1]: Finished register-nix-paths.service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.552544] systemd[1]: Reached target System Initialization.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.553284] systemd[1]: Started Discard unused filesystem blocks once a week.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.553771] systemd[1]: Started Daily Cleanup of Temporary Directories.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.555117] systemd[1]: Reached target Timer Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.555473] systemd[1]: Listening on D-Bus System Message Bus Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.555892] systemd[1]: Listening on Nix Daemon Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.556280] systemd[1]: Listening on Hostname Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.570052] systemd[1]: Starting resolvconf update...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.556659] systemd[1]: Listening on Virtual Machine and Container Registration Service Socket.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.557216] systemd[1]: Reached target Socket Units.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.557559] systemd[1]: Reached target Basic System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.559056] systemd[1]: Started backdoor.service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.560018] systemd[1]: Starting Import lastlog data into lastlog2 database...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.561516] systemd[1]: Starting Name Service Cache Daemon (nsncd)...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.562929] systemd[1]: Starting Post-Boot Actions...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.568140] systemd[1]: Started Reset console on configuration changes.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.582900] systemd[1]: Finished Post-Boot Actions.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.576548] systemd[1]: Starting resolvconf update...
vm-test-run-radicle-devcontainer-ci-e2e> seed # connecting to host...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.594133] systemd[1]: Started Name Service Cache Daemon (nsncd).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.595483] systemd[1]: Reached target Host and Network Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.596394] nsncd[556]: Jul 07 15:55:22.417 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 10s }, path: "/var/run/nscd/socket"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.597328] systemd[1]: Reached target User and Group Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.597903] systemd[1]: Starting User Login Management...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.599081] systemd[1]: Finished Import lastlog data into lastlog2 database.
vm-test-run-radicle-devcontainer-ci-e2e> seed: Guest shell says: b'Spawning backdoor root shell...\n'
vm-test-run-radicle-devcontainer-ci-e2e> seed: connected to guest root shell
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.592089] systemd[1]: Starting D-Bus System Message Bus...
vm-test-run-radicle-devcontainer-ci-e2e> seed: (connecting took 5.99 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.603746] systemd[1]: Finished Post-Boot Actions.
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: waiting for the VM to finish booting, in 5.99 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.610893] nsncd[501]: Jul 07 15:55:22.150 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 10s }, path: "/var/run/nscd/socket"
vm-test-run-radicle-devcontainer-ci-e2e> alice # connecting to host...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.626162] systemd-logind[570]: New seat seat0.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.613805] systemd[1]: Started Name Service Cache Daemon (nsncd).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.628873] systemd-logind[570]: Watching system buttons on /dev/input/event2 (Power Button)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.629321] systemd-logind[570]: Watching system buttons on /dev/input/event3 (QEMU Virtio Keyboard)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.629548] systemd-logind[570]: Watching system buttons on /dev/input/event0 (AT Translated Set 2 keyboard)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.629761] systemd[1]: Stopped target Host and Network Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.630014] systemd[1]: Stopping Host and Network Name Lookups...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.630226] systemd[1]: Stopped target User and Group Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.630439] systemd[1]: Stopping User and Group Name Lookups...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.633357] systemd[1]: Stopping Name Service Cache Daemon (nsncd)...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.621883] systemd[1]: Reached target Host and Network Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.636494] systemd[1]: Started User Login Management.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.636887] systemd[1]: Starting linger-users.service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.637440] systemd[1]: nscd.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.622955] systemd[1]: Reached target User and Group Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.638166] systemd[1]: Stopped Name Service Cache Daemon (nsncd).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.640704] systemd[1]: Starting Name Service Cache Daemon (nsncd)...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.630205] systemd[1]: Starting User Login Management...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.652227] systemd[1]: linger-users.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.652774] systemd[1]: Finished linger-users.service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.640233] systemd[1]: Finished Import lastlog data into lastlog2 database.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.659283] nsncd[626]: Jul 07 15:55:22.484 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 10s }, path: "/var/run/nscd/socket"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.664287] systemd[1]: Started Name Service Cache Daemon (nsncd).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.664741] systemd[1]: Reached target Host and Network Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.665663] systemd[1]: Reached target User and Group Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.657448] dbus-broker-launch[506]: Looking up NSS user entry for 'systemd-timesync'...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.675125] systemd[1]: Finished resolvconf update.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.675503] systemd[1]: Reached target Preparation for Network.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.676461] systemd[1]: Starting DHCP Client...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.663114] dbus-broker-launch[506]: NSS returned no entry for 'systemd-timesync'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.677383] systemd[1]: Starting Address configuration of eth1...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.663619] dbus-broker-launch[506]: Invalid user-name in /nix/store/il9318pd96j6wr81kncnn7s7hvxixc92-system-path/share/dbus-1/system.d/org.freedesktop.timesync1.conf +16: user="systemd-timesync"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.678201] systemd[1]: Starting Extra networking commands....
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.675359] systemd[1]: Started D-Bus System Message Bus.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.690611] systemd-logind[526]: New seat seat0.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.691917] dbus-broker-launch[506]: Ready
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.692547] systemd-logind[526]: Watching system buttons on /dev/input/event2 (Power Button)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.693128] systemd-logind[526]: Watching system buttons on /dev/input/event3 (QEMU Virtio Keyboard)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.693715] systemd-logind[526]: Watching system buttons on /dev/input/event0 (AT Translated Set 2 keyboard)
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.694911] systemd[1]: Started User Login Management.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.710080] network-addresses-eth1-start[658]: adding address 192.168.1.2/24... done
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.700910] systemd[1]: Stopped target Host and Network Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.715309] network-addresses-eth1-start[658]: adding address 2001:db8:1::2/64... done
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.702287] systemd[1]: Stopping Host and Network Name Lookups...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.702697] systemd[1]: Stopped target User and Group Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.703134] systemd[1]: Stopping User and Group Name Lookups...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.705754] systemd[1]: Starting linger-users.service...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.707471] systemd[1]: Stopping Name Service Cache Daemon (nsncd)...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.708755] systemd[1]: nscd.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.723605] systemd[1]: Finished Address configuration of eth1.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.711262] systemd[1]: Stopped Name Service Cache Daemon (nsncd).
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.732036] dhcpcd[666]: dhcpcd-10.3.2 starting
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.719993] systemd[1]: Starting Name Service Cache Daemon (nsncd)...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.735546] dhcpcd[708]: dev: loaded udev
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.818702] 8021q: 802.1Q VLAN Support v1.8
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.742957] s[ 5.818917] 8021q: adding VLAN 0 to HW filter on device eth1
vm-test-run-radicle-devcontainer-ci-e2e> seed # ystemd[1]: Finished Extra networking commands..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.743713] systemd[1]: Reached target Network.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.744609] systemd[1]: Starting Permit User Sessions...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.733368] systemd[1]: linger-users.service: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.733868] systemd[1]: Finished linger-users.service.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.739424] systemd[1]: Finished resolvconf update.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.754598] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.741129] systemd[1]: Reached target Preparation for Network.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.744340] systemd[1]: Starting DHCP Client...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.759052] systemd[1]: Finished Permit User Sessions.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.745250] nsncd[576]: Jul 07 15:55:22.287 INFO started, config: Config { ignored_request_types: {}, worker_count: 8, handoff_timeout: 10s }, path: "/var/run/nscd/socket"
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.746813] systemd[1]: Starting Address configuration of eth1...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.761422] systemd[1]: Started Getty on tty1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.761866] systemd[1]: Reached target Login Prompts.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.749074] systemd[1]: Starting Extra networking commands....
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.750044] systemd[1]: Started Name Service Cache Daemon (nsncd).
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.752508] systemd[1]: Reached target Host and Network Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.752954] systemd[1]: Reached target User and Group Name Lookups.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.875349] cfg80211: Loading compiled-in X.509 certificates for regulatory database
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.790196] network-addresses-eth1-start[596]: adding address 192.168.1.1/24... done
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.883590] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.883997] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.885009] faux_driver regulatory: Direct firmware load for regulatory.db failed with error -2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.885406] cfg80211: failed to load regulatory.db
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.798073] network-addresses-eth1-start[596]: adding address 2001:db8:1::1/64... done
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.806618] systemd[1]: Finished Address configuration of eth1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.904192] 8021q: adding VLAN 0 to HW filter on device eth0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.828735] dhcpcd[708]: eth0: waiting for carrier
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.829076] dhcpcd[708]: eth0: carrier acquired
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.832543] dhcpcd[708]: DUID 00:01:00:01:31:df:dd:ea:52:54:00:12:34:56
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.832856] dhcpcd[708]: eth0: IAID 00:12:34:56
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.833229] dhcpcd[708]: eth0: adding address fe80::5054:ff:fe12:3456
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.829748] dhcpcd[605]: dhcpcd-10.3.2 starting
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.833325] dhcpcd[652]: dev: loaded udev
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.834820] systemd[1]: Finished Extra networking commands..
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.836770] systemd[1]: Reached target Network.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.837946] systemd[1]: Starting Permit User Sessions...
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.916094] 8021q: 802.1Q VLAN Support v1.8
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.916677] 8021q: adding VLAN 0 to HW filter on device eth1
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.852145] systemd[1]: Finished Permit User Sessions.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.855600] systemd[1]: Started Getty on tty1.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.857267] systemd[1]: Reached target Login Prompts.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.863641] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.968603] cfg80211: Loading compiled-in X.509 certificates for regulatory database
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.977306] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.977646] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.978540] faux_driver regulatory: Direct firmware load for regulatory.db failed with error -2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.978936] cfg80211: failed to load regulatory.db
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.996540] 8021q: adding VLAN 0 to HW filter on device eth0
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.923694] dhcpcd[652]: eth0: waiting for carrier
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.924202] dhcpcd[652]: eth0: carrier acquired
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.927392] dhcpcd[652]: DUID 00:01:00:01:31:df:dd:ea:52:54:00:12:34:56
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.927827] dhcpcd[652]: eth0: IAID 00:12:34:56
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 5.928199] dhcpcd[652]: eth0: adding address fe80::5054:ff:fe12:3456
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 5.996692] dhcpcd[708]: eth0: soliciting a DHCP lease
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 6.109598] NET: Registered PF_PACKET protocol family
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 6.047936] dhcpcd[708]: eth0: offered 10.0.2.15 from 10.0.2.2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 6.059488] dhcpcd[708]: eth0: probing address 10.0.2.15/24
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 7.534627] dhcpcd[652]: eth0: soliciting a DHCP lease
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 7.642488] NET: Registered PF_PACKET protocol family
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 7.573303] dhcpcd[652]: eth0: offered 10.0.2.15 from 10.0.2.2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 7.575086] dhcpcd[652]: eth0: probing address 10.0.2.15/24
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 7.677770] dhcpcd[708]: eth0: soliciting an IPv6 router
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 7.678264] dhcpcd[708]: eth0: Router Advertisement from fe80::2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 7.678799] dhcpcd[708]: eth0: adding address fec0::5054:ff:fe12:3456/64
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 7.679254] dhcpcd[708]: eth0: adding route to fec0::/64
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 7.679633] dhcpcd[708]: eth0: adding default route via fe80::2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 8.389762] dhcpcd[652]: eth0: soliciting an IPv6 router
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 8.393725] dhcpcd[652]: eth0: Router Advertisement from fe80::2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 8.395337] dhcpcd[652]: eth0: adding address fec0::5054:ff:fe12:3456/64
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 8.395733] dhcpcd[652]: eth0: adding route to fec0::/64
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 8.396139] dhcpcd[652]: eth0: adding default route via fe80::2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.001725] dhcpcd[708]: eth0: leased 10.0.2.15 for 86400 seconds
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.005548] dhcpcd[708]: eth0: adding route to 10.0.2.0/24
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.008269] dhcpcd[708]: eth0: adding default route via 10.0.2.2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.077680] systemd[1]: Started DHCP Client.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.078157] systemd[1]: Reached target Network is Online.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.100334] systemd[1]: Starting Radicle Node...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.271381] systemd[1]: Started Radicle Node.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.273178] systemd[1]: Starting radicle-ci-broker.service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.284273] radicle-node[831]: Starting node..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.284819] radicle-node[831]: Version 1.9.1 (5bd3569e120a6172d9df68e1d1d0eed15e8104b1)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.285619] radicle-node[831]: Unlocking node keystore..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.286661] radicle-node[831]: Initializing fingerprint..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.287863] radicle-node[831]: Node ID is z6MkhwX7wBkHQvcLazu2KDFK6UifGkLcoxNm2iA38fPH9LwU
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.289264] radicle-node[831]: Opening policy database..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.305405] systemd[1]: Started radicle-ci-broker.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.306135] systemd[1]: Reached target Multi-User System.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.306447] systemd[1]: Startup finished in 419ms (kernel) + 2.978s (initrd) + 7.908s (userspace) = 11.306s.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.316717] cib[835]: {"timestamp":"2026-07-07T15:55:28.141107Z","level":"INFO","fields":{"message":"CI broker starts","msg_id":"CibStart","kind":"startup","version":"0.29.0@160fd77"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.319369] cib[835]: {"timestamp":"2026-07-07T15:55:28.144446Z","level":"DEBUG","fields":{"message":"loaded configuration","msg_id":"CibConfig","kind":"startup","config":"Config { default_adapter: None, triggers: Some([TriggerConfig { adapter: \"devcontainer\", filters: [And([HasFile(\".radicle/devcontainer-ci.yaml\"), DefaultBranch])] }]), report_dir: Some(\"/var/lib/radicle-ci/reports\"), db: \"/var/lib/radicle-ci/ci-broker.db\", status_update_interval_seconds: None, adapters: {\"devcontainer\": AdapterSpec { command: \"/nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci\", env: {\"CONTAINER_HOST\": \"unix:///run/podman/podman.sock\", \"DOCKER_HOST\": \"unix:///run/podman/podman.sock\", \"PATH\": \"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin:/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin:/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9/bin:/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11/bin:/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0/bin:/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0/bin:/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1/bin\"}, sensitive_env: {}, config: {\"reports\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports\"), \"state\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state\"), \"base_url\": Null, \"forward_env\": Sequence [String(\"RADICLE_E2E_SECRET\")], \"runtime\": String(\"podman\"), \"runtime_path\": String(\"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman\"), \"devcontainer_cli\": String(\"/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer\"), \"log_file\": String(\"/var/log/radicle-ci/adapters/devcontainer/devcontainer.log\")}, config_env: Some(\"RAD_DCI_CONFIG\") }}, filters: [], max_run_time: 3600s, queue_len_interval: 3600s, refresh_interval: 300, concurrent_adapters: None, description: None, update_job_cobs: true }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.394966] radicle-node[831]: Migrating COBs cache..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.408393] cib[835]: {"timestamp":"2026-07-07T15:55:28.233922Z","level":"DEBUG","fields":{"message":"worker starts","msg_id":"WorkerStart","name":"queue-adder"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.410634] cib[835]: {"timestamp":"2026-07-07T15:55:28.234089Z","level":"DEBUG","fields":{"message":"worker ends","msg_id":"WorkerEnd","name":"queue-adder","result":"Err(CiEvent(Subscribe(NoControlSocket(\"/var/lib/radicle/node/control.sock\"))))"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.412253] cib[835]: {"timestamp":"2026-07-07T15:55:28.234515Z","level":"DEBUG","fields":{"message":"worker starts","msg_id":"WorkerStart","name":"status-page"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.413210] cib[835]: {"timestamp":"2026-07-07T15:55:28.234814Z","level":"DEBUG","fields":{"message":"broker database","msg_id":"BrokerDatabase","kind":"startup","filename":"/var/lib/radicle-ci/ci-broker.db"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.414457] cib[835]: XXX update job COBs
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.414756] cib[835]: {"timestamp":"2026-07-07T15:55:28.237744Z","level":"DEBUG","fields":{"message":"worker starts","msg_id":"WorkerStart","name":"queue-processor"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.415643] cib[835]: {"timestamp":"2026-07-07T15:55:28.237887Z","level":"DEBUG","fields":{"message":"event notification channel disconnected","msg_id":"QueueProcDisconnected","kind":"debug"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.416541] cib[835]: {"timestamp":"2026-07-07T15:55:28.237897Z","level":"DEBUG","fields":{"message":"thread to process events ends","msg_id":"QueueProcEnd","kind":"debug","result":"Ok(())"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.417452] cib[835]: {"timestamp":"2026-07-07T15:55:28.237904Z","level":"DEBUG","fields":{"message":"worker ends","msg_id":"WorkerEnd","name":"queue-processor","result":"Ok(())"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.418366] cib[835]: {"timestamp":"2026-07-07T15:55:28.237937Z","level":"DEBUG","fields":{"message":"page updater: run notification channel disconnected","msg_id":"PagesDisconnected","kind":"debug"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.419367] cib[835]: {"timestamp":"2026-07-07T15:55:28.238219Z","level":"ERROR","fields":{"message":"ERROR: failed to add events to queue"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.420156] cib[835]: {"timestamp":"2026-07-07T15:55:28.238237Z","level":"ERROR","fields":{"message":"caused by: failed to subscribe to node events"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.420945] cib[835]: {"timestamp":"2026-07-07T15:55:28.238243Z","level":"ERROR","fields":{"message":"caused by: node control socket does not exist: /var/lib/radicle/node/control.sock"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.421905] cib[835]: {"timestamp":"2026-07-07T15:55:28.238250Z","level":"ERROR","fields":{"message":"CI broker ends in unrecoverable error","msg_id":"CibEndFailure","kind":"shutdown","success":false}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.422935] systemd[1]: radicle-ci-broker.service: Main process exited, code=exited, status=1/FAILURE
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.423567] systemd[1]: radicle-ci-broker.service: Failed with result 'exit-code'.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.438081] radicle-node[831]: Migration of COBs cache complete (version=3)..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.439024] radicle-node[831]: Default seeding policy set to 'block (all)'
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.439636] radicle-node[831]: Initializing service (Main)..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.499236] radicle-node[831]: Opening node database..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.649957] radicle-node[831]: Address book is empty. Adding bootstrap nodes..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.651171] radicle-node[831]: 4 nodes added to address book
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.652256] radicle-node[831]: Empty refs database, populating from storage..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.653920] radicle-node[831]: Entering reactor event loop
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.658297] radicle-node[831]: Binding control socket /var/lib/radicle/node/control.sock..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.659541] radicle-node[831]: Running node z6MkhwX7wBkHQvcLazu2KDFK6UifGkLcoxNm2iA38fPH9LwU in /var/lib/radicle..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.771489] systemd[1]: radicle-ci-broker.service: Scheduled restart job, restart counter is at 1.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.776135] systemd[1]: Starting radicle-ci-broker.service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.818960] systemd[1]: Started radicle-ci-broker.service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.820975] cib[858]: {"timestamp":"2026-07-07T15:55:28.646499Z","level":"INFO","fields":{"message":"CI broker starts","msg_id":"CibStart","kind":"startup","version":"0.29.0@160fd77"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.822169] cib[858]: {"timestamp":"2026-07-07T15:55:28.646760Z","level":"DEBUG","fields":{"message":"loaded configuration","msg_id":"CibConfig","kind":"startup","config":"Config { default_adapter: None, triggers: Some([TriggerConfig { adapter: \"devcontainer\", filters: [And([HasFile(\".radicle/devcontainer-ci.yaml\"), DefaultBranch])] }]), report_dir: Some(\"/var/lib/radicle-ci/reports\"), db: \"/var/lib/radicle-ci/ci-broker.db\", status_update_interval_seconds: None, adapters: {\"devcontainer\": AdapterSpec { command: \"/nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci\", env: {\"CONTAINER_HOST\": \"unix:///run/podman/podman.sock\", \"PATH\": \"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin:/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin:/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9/bin:/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11/bin:/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0/bin:/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0/bin:/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1/bin\", \"DOCKER_HOST\": \"unix:///run/podman/podman.sock\"}, sensitive_env: {}, config: {\"forward_env\": Sequence [String(\"RADICLE_E2E_SECRET\")], \"base_url\": Null, \"state\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state\"), \"runtime_path\": String(\"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman\"), \"log_file\": String(\"/var/log/radicle-ci/adapters/devcontainer/devcontainer.log\"), \"devcontainer_cli\": String(\"/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer\"), \"reports\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports\"), \"runtime\": String(\"podman\")}, config_env: Some(\"RAD_DCI_CONFIG\") }}, filters: [], max_run_time: 3600s, queue_len_interval: 3600s, refresh_interval: 300, concurrent_adapters: None, description: None, update_job_cobs: true }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.831168] cib[858]: {"timestamp":"2026-07-07T15:55:28.647491Z","level":"DEBUG","fields":{"message":"worker starts","msg_id":"WorkerStart","name":"queue-adder"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.831941] cib[858]: {"timestamp":"2026-07-07T15:55:28.647815Z","level":"DEBUG","fields":{"message":"broker database","msg_id":"BrokerDatabase","kind":"startup","filename":"/var/lib/radicle-ci/ci-broker.db"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.832916] cib[858]: XXX update job COBs
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.833177] cib[858]: {"timestamp":"2026-07-07T15:55:28.648336Z","level":"DEBUG","fields":{"message":"worker starts","msg_id":"WorkerStart","name":"status-page"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.833945] cib[858]: {"timestamp":"2026-07-07T15:55:28.648594Z","level":"DEBUG","fields":{"message":"created node event source","msg_id":"NodeEventSourceCreated","kind":"startup","node_event_source":"NodeEventSource<path=/var/lib/radicle>"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.835062] cib[858]: {"timestamp":"2026-07-07T15:55:28.648604Z","level":"DEBUG","fields":{"message":"created CI event source","msg_id":"CiEventSourceCreated","kind":"startup","source":"CiEventSource<path=NodeEventSource<path=/var/lib/radicle>"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 11.836178] cib[858]: {"timestamp":"2026-07-07T15:55:28.649714Z","level":"DEBUG","fields":{"message":"worker starts","msg_id":"WorkerStart","name":"queue-processor"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: waiting for unit radicle-ci-broker.service, in 12.34 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: waiting for unit podman.socket
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: waiting for unit podman.socket, in 0.02 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: must succeed: podman load -i /nix/store/7zkhxh7yymfp2f5802lwz8g1y2mdk8g5-docker-image-radicle-e2e-fixture.tar.gz
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 12.083040] radicle-node[831]: Listening on [::]:8776..
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 12.083964] radicle-node[831]: Received command QueryState(..)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 12.158083] systemd[1]: var-lib-containers-storage-overlay-metacopy\x2dcheck2972076102-merged.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 12.198792] podman[874]: 2026-07-07 15:55:29.023847583 +0000 UTC m=+0.172052315 system refresh
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 13.399574] dhcpcd[652]: eth0: leased 10.0.2.15 for 86400 seconds
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 13.400060] dhcpcd[652]: eth0: adding route to 10.0.2.0/24
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 13.400411] dhcpcd[652]: eth0: adding default route via 10.0.2.2
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 13.437209] systemd[1]: Started DHCP Client.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 13.437548] systemd[1]: Reached target Multi-User System.
vm-test-run-radicle-devcontainer-ci-e2e> alice # [ 13.438280] systemd[1]: Startup finished in 418ms (kernel) + 2.965s (initrd) + 10.054s (userspace) = 13.438s.
vm-test-run-radicle-devcontainer-ci-e2e> seed # Getting image source signatures
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 14.259088] systemd[1]: var-lib-containers-storage-overlay-compat3401709265-lower\x2dmapped.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # Writing manifest to image destination
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.004691] podman[874]: 2026-07-07 15:55:31.829781856 +0000 UTC m=+2.977986868 image loadfromarchive d42bce02a9345e4e33b02f58782052a51b1c0e8e8f3533ae487aeeaefc9c79aa /nix/store/7zkhxh7yymfp2f5802lwz8g1y2mdk8g5-docker-image-radicle-e2e-fixture.tar.gz
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.005864] systemd[1]: var-lib-containers-storage-overlay.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: must succeed: podman load -i /nix/store/7zkhxh7yymfp2f5802lwz8g1y2mdk8g5-docker-image-radicle-e2e-fixture.tar.gz, in 3.02 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: rad auth --alias alice --stdin </dev/null
vm-test-run-radicle-devcontainer-ci-e2e> alice: waiting for the VM to finish booting
vm-test-run-radicle-devcontainer-ci-e2e> alice: Guest shell says: b'Spawning backdoor root shell...\n'
vm-test-run-radicle-devcontainer-ci-e2e> alice: connected to guest root shell
vm-test-run-radicle-devcontainer-ci-e2e> alice: (connecting took 0.00 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: waiting for the VM to finish booting, in 0.00 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: rad auth --alias alice --stdin </dev/null, in 0.40 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: mkdir -p /tmp/shared/tmpx0zzn92h
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: mkdir -p /tmp/shared/tmpx0zzn92h, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: mkdir -p /root/.radicle
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: mkdir -p /root/.radicle, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: cp -r /tmp/shared/tmpx0zzn92h/h2xv6hcj8bxldvbd1qfrhps8p3xw5sb1-config.json /root/.radicle/config.json
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: cp -r /tmp/shared/tmpx0zzn92h/h2xv6hcj8bxldvbd1qfrhps8p3xw5sb1-config.json /root/.radicle/config.json, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: rad node start
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.574763] radicle-node[831]: Connected to z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB ([2001:db8:1::1]:34060) (Inbound)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.578200] cib[858]: {"timestamp":"2026-07-07T15:55:32.401884Z","level":"TRACE","fields":{"message":"node event source received event","msg_id":"NodeEventSourceReceivedEvent","kind":"got_event","node_event":"PeerConnected { nid: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.582930] cib[858]: {"timestamp":"2026-07-07T15:55:32.405278Z","level":"TRACE","fields":{"message":"node event source received event","msg_id":"NodeEventSourceReceivedEvent","kind":"got_event","node_event":"NodeAnnounced { nid: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), alias: Alias(\"alice\"), timestamp: Timestamp(1783439731986), features: Features(1), addresses: [] }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.635759] cib[858]: {"timestamp":"2026-07-07T15:55:32.461328Z","level":"TRACE","fields":{"message":"node event source received event","msg_id":"NodeEventSourceReceivedEvent","kind":"got_event","node_event":"InventoryAnnounced { nid: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), inventory: [], timestamp: Timestamp(1783439731987) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: rad node start, in 0.25 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: rad self --nid
vm-test-run-radicle-devcontainer-ci-e2e> alice # ! Deprecated: The command/option `rad self --nid` is deprecated and will be removed. Please use `rad node status --only nid` instead.
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: rad self --nid, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: mkdir /tmp/repo
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: mkdir /tmp/repo, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: cp -r --no-preserve=mode /nix/store/ij8waljmj1slj1x2wyzvv2sghvnd3d4k-radicle-e2e-fixture-repo/. /tmp/repo/
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: cp -r --no-preserve=mode /nix/store/ij8waljmj1slj1x2wyzvv2sghvnd3d4k-radicle-e2e-fixture-repo/. /tmp/repo/, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: git -C /tmp/repo init
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: git -C /tmp/repo init, in 0.02 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: git -C /tmp/repo add .
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: git -C /tmp/repo add ., in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: git -C /tmp/repo commit -m init
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: git -C /tmp/repo commit -m init, in 0.02 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: cd /tmp/repo && rad init --name repo --description "" --default-branch main --public
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.927091] cib[858]: {"timestamp":"2026-07-07T15:55:32.752335Z","level":"TRACE","fields":{"message":"node event source received event","msg_id":"NodeEventSourceReceivedEvent","kind":"got_event","node_event":"InventoryAnnounced { nid: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), inventory: [RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)], timestamp: Timestamp(1783439732449) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 15.929800] cib[858]: {"timestamp":"2026-07-07T15:55:32.752750Z","level":"TRACE","fields":{"message":"node event source received event","msg_id":"NodeEventSourceReceivedEvent","kind":"got_event","node_event":"SeedDiscovered { rid: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), nid: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: cd /tmp/repo && rad init --name repo --description "" --default-branch main --public, in 5.34 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> alice: must succeed: rad inspect --rid /tmp/repo
vm-test-run-radicle-devcontainer-ci-e2e> alice: (finished: must succeed: rad inspect --rid /tmp/repo, in 0.03 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: must succeed: rad-system seed rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.200645] radicle-node[831]: Received command Seed(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL, followed)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.218890] radicle-node[831]: Received command Seeds(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.223476] radicle-node[831]: Received command QueryState(..)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.224784] radicle-node[831]: Received command Fetch(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL, z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.273505] radicle-node[831]: Fetched rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL from z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB successfully
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.274901] cib[858]: {"timestamp":"2026-07-07T15:55:38.100327Z","level":"TRACE","fields":{"message":"node event source received event","msg_id":"NodeEventSourceReceivedEvent","kind":"got_event","node_event":"RefsFetched { remote: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), rid: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), updated: [Created { name: RefString(\"refs/namespaces/z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB/refs/rad/id\"), oid: 7c466c437e77d33ff5babff724e8a161687223b3 }, Created { name: RefString(\"refs/namespaces/z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB/refs/rad/sigrefs\"), oid: b779c852994d3b2707bc968031053b95dfde05a8 }, Created { name: RefString(\"refs/namespaces/z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB/refs/cobs/xyz.radicle.id/7c466c437e77d33ff5babff724e8a161687223b3\"), oid: 7c466c437e77d33ff5babff724e8a161687223b3 }, Created { name: RefString(\"refs/namespaces/z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB/refs/heads/main\"), oid: 7536a577ce91ed23373cb98b3abab3f283ae1939 }, Skipped { name: RefString(\"refs/namespaces/z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB/refs/rad/id\"), oid: 7c466c437e77d33ff5babff724e8a161687223b3 }, Created { name: RefString(\"refs/namespaces/z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB/refs/rad/root\"), oid: 7c466c437e77d33ff5babff724e8a161687223b3 }] }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.283412] cib[858]: {"timestamp":"2026-07-07T15:55:38.109032Z","level":"TRACE","fields":{"message":"CI event source received events","msg_id":"CiEventSourceGotEvents","kind":"got_event","events":"[V1(BranchCreated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })]"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.299947] cib[858]: {"timestamp":"2026-07-07T15:55:38.125551Z","level":"DEBUG","fields":{"message":"insert broker event into queue","msg_id":"QueueAddEnqueueEvent","kind":"got_event","event":"V1(BranchCreated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })","id":"QueueId { id: \"65eeac29-5e95-4156-8516-93f583543dd4\" }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.302542] cib[858]: {"timestamp":"2026-07-07T15:55:38.128133Z","level":"TRACE","fields":{"message":"node event source received event","msg_id":"NodeEventSourceReceivedEvent","kind":"got_event","node_event":"CanonicalRefUpdated { rid: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), refname: Qualified(RefString(\"refs/heads/main\")), target: 7536a577ce91ed23373cb98b3abab3f283ae1939 }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.304359] cib[858]: {"timestamp":"2026-07-07T15:55:38.128158Z","level":"INFO","fields":{"message":"picked an event from event queue","msg_id":"QueueProcPickedEvent","kind":"got_event","id":"65eeac29-5e95-4156-8516-93f583543dd4","event":"QueuedCiEvent { id: QueueId { id: \"65eeac29-5e95-4156-8516-93f583543dd4\" }, ts: \"2026-07-07 15:55:38.109762Z\", event: V1(BranchCreated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 }) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.306952] cib[858]: {"timestamp":"2026-07-07T15:55:38.128177Z","level":"DEBUG","fields":{"message":"remove event from queue","msg_id":"QueueProcRemoveEvent","kind":"debug","event":"QueuedCiEvent { id: QueueId { id: \"65eeac29-5e95-4156-8516-93f583543dd4\" }, ts: \"2026-07-07 15:55:38.109762Z\", event: V1(BranchCreated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 }) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.319703] cib[858]: {"timestamp":"2026-07-07T15:55:38.145326Z","level":"INFO","fields":{"message":"filter decision","msg_id":"QueueProcFilterDecision","kind":"filter_decision","event":"V1(BranchCreated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })","filter":"And([HasFile(\".radicle/devcontainer-ci.yaml\"), DefaultBranch])","decision":"{\"filter\":\"And\",\"allowed\":true,\"reason\":\"(combo)\",\"children\":[{\"filter\":\"HasFile\",\"allowed\":true,\"reason\":\"repo=Some(RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)) tip=Some(7536a577ce91ed23373cb98b3abab3f283ae1939) wanted=\\\".radicle/devcontainer-ci.yaml\\\"\",\"children\":[]},{\"filter\":\"DefaultBranch\",\"allowed\":true,\"reason\":\"repo=Some(RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)) actual=Some(RefString(\\\"main\\\"))\",\"children\":[]}]}"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.323921] cib[858]: {"timestamp":"2026-07-07T15:55:38.149568Z","level":"DEBUG","fields":{"message":"broker database","msg_id":"BrokerDatabase","kind":"startup","filename":"/var/lib/radicle-ci/ci-broker.db"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.325239] cib[858]: {"timestamp":"2026-07-07T15:55:38.150788Z","level":"DEBUG","fields":{"message":"processing event","msg_id":"QueueProcProcessingEvent","kind":"got_event","event":"V1(BranchCreated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })","adapter":"Adapter { bin: \"/nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci\", env: {\"DOCKER_HOST\": \"unix:///run/podman/podman.sock\", \"PATH\": \"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin:/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin:/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9/bin:/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11/bin:/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0/bin:/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0/bin:/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1/bin\", \"CONTAINER_HOST\": \"unix:///run/podman/podman.sock\"}, config: {\"forward_env\": Sequence [String(\"RADICLE_E2E_SECRET\")], \"base_url\": Null, \"state\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state\"), \"runtime_path\": String(\"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman\"), \"log_file\": String(\"/var/log/radicle-ci/adapters/devcontainer/devcontainer.log\"), \"devcontainer_cli\": String(\"/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer\"), \"reports\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports\"), \"runtime\": String(\"podman\")}, config_env: Some(\"RAD_DCI_CONFIG\") }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.325776] cib[858]: {"timestamp":"2026-07-07T15:55:38.150813Z","level":"DEBUG","fields":{"message":"Action: run","msg_id":"QueueProcActionRun","kind":"debug","event":"V1(BranchCreated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.335434] cib[858]: {"timestamp":"2026-07-07T15:55:38.161034Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radicle.id at 7c466c437e77d33ff5babff724e8a161687223b3","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.339145] cib[858]: {"timestamp":"2026-07-07T15:55:38.164776Z","level":"DEBUG","fields":{"message":"trigger request result","msg_id":"QueueProcTrigger","kind":"got_event","result":"Ok(Trigger { common: EventCommonFields { version: 1, event_type: Push, repository: Repository { id: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), name: \"repo\", description: \"\", private: false, default_branch: \"main\", delegates: [Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\")] } }, push: Some(PushEvent { pusher: Author { id: Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\"), alias: Some(Alias(\"alice\")) }, before: 7536a577ce91ed23373cb98b3abab3f283ae1939, after: 7536a577ce91ed23373cb98b3abab3f283ae1939, branch: \"main\", commits: [7536a577ce91ed23373cb98b3abab3f283ae1939] }), patch: None })"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.342912] cib[858]: {"timestamp":"2026-07-07T15:55:38.168491Z","level":"INFO","fields":{"message":"start CI run","msg_id":"BrokerRunStart","kind":"start_run","trigger":"Trigger { common: EventCommonFields { version: 1, event_type: Push, repository: Repository { id: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), name: \"repo\", description: \"\", private: false, default_branch: \"main\", delegates: [Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\")] } }, push: Some(PushEvent { pusher: Author { id: Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\"), alias: Some(Alias(\"alice\")) }, before: 7536a577ce91ed23373cb98b3abab3f283ae1939, after: 7536a577ce91ed23373cb98b3abab3f283ae1939, branch: \"main\", commits: [7536a577ce91ed23373cb98b3abab3f283ae1939] }), patch: None }","broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: must succeed: rad-system seed rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL, in 0.21 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: waiting for success: grep -Eq 'Result: (success|failure)' /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports/*.html
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.360880] cib[858]: {"timestamp":"2026-07-07T15:55:38.186503Z","level":"TRACE","fields":{"message":"Loaded 0 references","log.target":"cob","log.module_path":"radicle_cob::object::collaboration::list","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/object/collaboration/list.rs","log.line":30},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.364516] cib[858]: {"timestamp":"2026-07-07T15:55:38.189879Z","level":"DEBUG","fields":{"message":"created job COB","msg_id":"JobCreate","kind":"start_run","repo_id":"RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)","oid":"7536a577ce91ed23373cb98b3abab3f283ae1939","job_id":"JobId(ObjectId(5390f11622d05f63155b613538968a2967b42954))"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # grep: /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports/*.html: No such file or directory
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.379316] cib[858]: {"timestamp":"2026-07-07T15:55:38.204944Z","level":"DEBUG","fields":{"message":"adapter config embedded in cib config","msg_id":"AdapterTempConfig","kind":"adapter_message","filename":"\"/tmp/.tmphBsSVb/adapter.yaml\"","config":"\"forward_env:\\n- RADICLE_E2E_SECRET\\nbase_url: null\\nstate: /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state\\nruntime_path: /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman\\nlog_file: /var/log/radicle-ci/adapters/devcontainer/devcontainer.log\\ndevcontainer_cli: /nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer\\nreports: /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports\\nruntime: podman\\n\""},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.400328] radicle-node[831]: Received command Seed(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL, followed)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.415703] cib[858]: {"timestamp":"2026-07-07T15:55:38.241181Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.418321] cib[858]: {"timestamp":"2026-07-07T15:55:38.243953Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 21.421694] cib[858]: {"timestamp":"2026-07-07T15:55:38.247310Z","level":"DEBUG","fields":{"message":"created run for job COB","msg_id":"JobRunCreate","kind":"start_run","job_id":"JobId(ObjectId(5390f11622d05f63155b613538968a2967b42954))","run_id":"db459bf2-25da-422a-913c-5310e5c811fc"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.266985] systemd[1]: Starting Podman API Service...
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.277923] systemd[1]: Started Podman API Service.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.290983] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="/nix/store/0k4s0ss8x6lm13vp3c2m26p7vkg3vkc3-podman-5.8.4/bin/podman filtering at log level info"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.291850] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="Setting parallel job count to 7"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.292553] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="Using sqlite as database backend"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.296897] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="Using systemd socket activation to determine API endpoint"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.298060] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="API service listening on \"/run/podman/podman.sock\". URI: \"unix:///run/podman/podman.sock\""
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.304936] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.306416] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.323664] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.324722] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.360940] systemd[1]: var-lib-containers-storage-overlay-volatile\x2dcheck655013955-merged.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.362038] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/version HTTP/1.1" 200 880 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.477240] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.478635] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.481834] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.483212] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Ff264a0d1-ddc4-4055-9415-c2f797cd592f%2Fw%22%2C%22xyz.radicle.ci.run%3Df264a0d1-ddc4-4055-9415-c2f797cd592f%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 3 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.501586] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.502532] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.504624] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/images/localhost%2Fradicle-e2e-fixture:latest/json?size=false HTTP/1.1" 200 1125 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.524552] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.525440] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.527475] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.530165] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.531597] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "POST /v5.8.4/libpod/images/pull?alltags=false&arch=&authfile=&os=&policy=missing&quiet=false&reference=localhost%2Fradicle-e2e-fixture%3Alatest&variant= HTTP/1.1" 200 152 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.535800] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/images/localhost%2Fradicle-e2e-fixture:latest/json?size=false HTTP/1.1" 200 1125 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.579113] podman[961]: 2026-07-07 15:55:39.404628658 +0000 UTC m=+0.296847505 container create efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.581242] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "POST /v5.8.4/libpod/containers/create HTTP/1.1" 201 88 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.588972] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/json?size=false HTTP/1.1" 200 6447 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.595147] podman[961]: 2026-07-07 15:55:39.357173744 +0000 UTC m=+0.249393150 image pull d42bce02a9345e4e33b02f58782052a51b1c0e8e8f3533ae487aeeaefc9c79aa localhost/radicle-e2e-fixture:latest
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.601169] podman[1027]: [INFO netavark::firewall] Using iptables firewall driver
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.705501] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.632345] (udev-worker)[946]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.716779] podman0: port 1(veth0) entered blocking state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.717166] podman0: port 1(veth0) entered disabled state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.717417] veth0: entered allmulticast mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.717649] veth0: entered promiscuous mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.642833] (udev-worker)[1034]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.719781] podman0: port 1(veth0) entered blocking state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.720037] podman0: port 1(veth0) entered forwarding state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.644926] podman[1027]: [INFO netavark::network::netlink_route] Adding route (dest: 0.0.0.0/0 ,gw: 10.88.0.1, metric 100)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.659550] dhcpcd[708]: veth0: IAID be:ce:26:a2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.659887] dhcpcd[708]: veth0: adding address fe80::acb8:beff:fece:26a2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.809934] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.814024] systemd[1]: Created slice Virtual Machine and Container Slice.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.820144] systemd[1]: Started libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.834134] systemd[1]: Started libcrun container.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.847467] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="Got Conmon PID as 1100"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.860667] podman[961]: 2026-07-07 15:55:39.686275348 +0000 UTC m=+0.578494474 container init efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.861048] podman[961]: 2026-07-07 15:55:39.686330383 +0000 UTC m=+0.578550068 container attach efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.861292] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="Performing HTTP Hijack attach to container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.865975] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="The detach keys parameter is not supported on start container"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.868928] podman[961]: 2026-07-07 15:55:39.694537013 +0000 UTC m=+0.586755859 container start efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.871982] peaceful_hugle[1100]: Container started
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 22.886433] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/start?detachkeys=ctrl-p%2Cctrl-q HTTP/1.1" 204 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.143250] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.144029] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.146898] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/json?size=false HTTP/1.1" 200 7848 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.152920] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/events?filters=%7B%22event%22%3A%5B%22start%22%5D%7D&since=&stream=true&until= HTTP/1.1" 200 636 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.165203] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.166101] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.166736] podman[961]: time="2026-07-07T15:55:39Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.167485] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Ff264a0d1-ddc4-4055-9415-c2f797cd592f%2Fw%22%2C%22xyz.radicle.ci.run%3Df264a0d1-ddc4-4055-9415-c2f797cd592f%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 941 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.182360] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.183558] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.185730] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70/json?size=false HTTP/1.1" 200 7848 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.200046] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.201053] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.203152] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/json?size=false HTTP/1.1" 200 7848 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.217981] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.218851] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.252279] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Created exec session be5260965a81501beda99f62e31fe9cf0b3098499064771549b5e09776a83566 in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.253442] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.254646] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/be5260965a81501beda99f62e31fe9cf0b3098499064771549b5e09776a83566/json HTTP/1.1" 200 395 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.256296] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session be5260965a81501beda99f62e31fe9cf0b3098499064771549b5e09776a83566 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.258547] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.279803] podman[961]: 2026-07-07 15:55:40.105392862 +0000 UTC m=+0.997611708 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.311304] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.312518] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.344799] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Created exec session 0507424461fc16e65c28fa2750d5137deb413c48f774459f876c8430473411a5 in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.346756] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.348157] podman[961]: 2026-07-07 15:55:40.170846152 +0000 UTC m=+1.063065837 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.362622] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/be5260965a81501beda99f62e31fe9cf0b3098499064771549b5e09776a83566/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.364462] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/be5260965a81501beda99f62e31fe9cf0b3098499064771549b5e09776a83566/json HTTP/1.1" 200 394 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.367248] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/0507424461fc16e65c28fa2750d5137deb413c48f774459f876c8430473411a5/json HTTP/1.1" 200 516 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.369115] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session be5260965a81501beda99f62e31fe9cf0b3098499064771549b5e09776a83566"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.393581] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/be5260965a81501beda99f62e31fe9cf0b3098499064771549b5e09776a83566/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.396766] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 0507424461fc16e65c28fa2750d5137deb413c48f774459f876c8430473411a5 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.398773] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.414793] podman[961]: 2026-07-07 15:55:40.240267545 +0000 UTC m=+1.132486671 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.419184] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/wait HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.422897] conmon[1197]: conmon efaf87ad0b70eb9364fe <nwarn>: Failed to write to remote console socket
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.440252] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.441172] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.456223] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.457146] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.468434] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/version HTTP/1.1" 200 880 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.469466] podman[961]: 2026-07-07 15:55:40.294901584 +0000 UTC m=+1.187120710 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.483200] podman[961]: time="2026-07-07T15:55:40Z" level=error msg="attaching to container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 0507424461fc16e65c28fa2750d5137deb413c48f774459f876c8430473411a5: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.485560] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/0507424461fc16e65c28fa2750d5137deb413c48f774459f876c8430473411a5/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.486533] podman[961]: time="2026-07-07T15:55:40Z" level=error msg="Writing header for container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 attach connection error: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.487881] podman[961]: time="2026-07-07T15:55:40Z" level=error msg="Writing error to container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 HTTP attach connection: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.489044] podman[961]: time="2026-07-07T15:55:40Z" level=error msg="Flushing HTTP buffer for container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 HTTP attach connection: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.505741] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.506442] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.507111] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.507799] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Ff264a0d1-ddc4-4055-9415-c2f797cd592f%2Fw%22%2C%22xyz.radicle.ci.run%3Df264a0d1-ddc4-4055-9415-c2f797cd592f%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 941 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.523113] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.523782] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.525745] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70/json?size=false HTTP/1.1" 200 7914 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.540345] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.541318] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.542424] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/json?size=false HTTP/1.1" 200 7914 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.557846] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.558895] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.582293] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Created exec session 58960b47eaa6c21bda67ccfe588b992dd31537e5a4ea8b2e4b49fda64b2add43 in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.582813] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.585130] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/58960b47eaa6c21bda67ccfe588b992dd31537e5a4ea8b2e4b49fda64b2add43/json HTTP/1.1" 200 395 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.586629] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 58960b47eaa6c21bda67ccfe588b992dd31537e5a4ea8b2e4b49fda64b2add43 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.588593] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.601135] podman[961]: 2026-07-07 15:55:40.426559658 +0000 UTC m=+1.318778784 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.621227] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.621994] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.645548] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Created exec session f709f5b8d0cc478817ae4c9fea851f1062f8a715f365a7905d9c8772cbf02b9f in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.645882] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.648033] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/f709f5b8d0cc478817ae4c9fea851f1062f8a715f365a7905d9c8772cbf02b9f/json HTTP/1.1" 200 516 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.649289] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session f709f5b8d0cc478817ae4c9fea851f1062f8a715f365a7905d9c8772cbf02b9f and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.650990] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.662375] podman[961]: 2026-07-07 15:55:40.487974726 +0000 UTC m=+1.380193852 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.710839] podman[961]: 2026-07-07 15:55:40.5352975 +0000 UTC m=+1.427523890 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.727332] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/f709f5b8d0cc478817ae4c9fea851f1062f8a715f365a7905d9c8772cbf02b9f/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.730487] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/f709f5b8d0cc478817ae4c9fea851f1062f8a715f365a7905d9c8772cbf02b9f/json HTTP/1.1" 200 515 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.732441] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session f709f5b8d0cc478817ae4c9fea851f1062f8a715f365a7905d9c8772cbf02b9f"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.758778] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/f709f5b8d0cc478817ae4c9fea851f1062f8a715f365a7905d9c8772cbf02b9f/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.776640] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.777700] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.801268] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Created exec session cd8edd5c5232809462d8f6ff9250af32c7018c00252d830ebefaa72f0519cfb7 in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.801889] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.804343] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/cd8edd5c5232809462d8f6ff9250af32c7018c00252d830ebefaa72f0519cfb7/json HTTP/1.1" 200 464 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.805859] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session cd8edd5c5232809462d8f6ff9250af32c7018c00252d830ebefaa72f0519cfb7 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.807389] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.817522] podman[961]: 2026-07-07 15:55:40.643127127 +0000 UTC m=+1.535346253 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.865522] podman[961]: 2026-07-07 15:55:40.690631768 +0000 UTC m=+1.582860671 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.890986] dhcpcd[708]: veth0: soliciting a DHCP lease
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.894281] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/cd8edd5c5232809462d8f6ff9250af32c7018c00252d830ebefaa72f0519cfb7/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.899425] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/cd8edd5c5232809462d8f6ff9250af32c7018c00252d830ebefaa72f0519cfb7/json HTTP/1.1" 200 463 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.902363] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session cd8edd5c5232809462d8f6ff9250af32c7018c00252d830ebefaa72f0519cfb7"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.938781] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/cd8edd5c5232809462d8f6ff9250af32c7018c00252d830ebefaa72f0519cfb7/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.952209] podman[961]: 2026-07-07 15:55:40.777817988 +0000 UTC m=+1.670037114 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.963982] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/58960b47eaa6c21bda67ccfe588b992dd31537e5a4ea8b2e4b49fda64b2add43/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.965836] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/58960b47eaa6c21bda67ccfe588b992dd31537e5a4ea8b2e4b49fda64b2add43/json HTTP/1.1" 200 394 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.967436] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 58960b47eaa6c21bda67ccfe588b992dd31537e5a4ea8b2e4b49fda64b2add43"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 23.996365] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/58960b47eaa6c21bda67ccfe588b992dd31537e5a4ea8b2e4b49fda64b2add43/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.062619] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.063317] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.087110] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Created exec session a896d2b7f733b3e26a7c138bf11ae1654c0c1768d5fb8a1cd8f44fb57f8a7157 in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.087900] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.091426] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "GET /v5.8.4/libpod/exec/a896d2b7f733b3e26a7c138bf11ae1654c0c1768d5fb8a1cd8f44fb57f8a7157/json HTTP/1.1" 200 413 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.093518] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session a896d2b7f733b3e26a7c138bf11ae1654c0c1768d5fb8a1cd8f44fb57f8a7157 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.095182] podman[961]: time="2026-07-07T15:55:40Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.107604] podman[961]: 2026-07-07 15:55:40.933154211 +0000 UTC m=+1.825373058 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.153563] podman[961]: 2026-07-07 15:55:40.978384541 +0000 UTC m=+1.870613444 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.174321] podman[961]: @ - - [07/Jul/2026:15:55:40 +0000] "POST /v5.8.4/libpod/exec/a896d2b7f733b3e26a7c138bf11ae1654c0c1768d5fb8a1cd8f44fb57f8a7157/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.178302] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/a896d2b7f733b3e26a7c138bf11ae1654c0c1768d5fb8a1cd8f44fb57f8a7157/json HTTP/1.1" 200 412 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.181283] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session a896d2b7f733b3e26a7c138bf11ae1654c0c1768d5fb8a1cd8f44fb57f8a7157"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.208833] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/a896d2b7f733b3e26a7c138bf11ae1654c0c1768d5fb8a1cd8f44fb57f8a7157/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.339543] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.340514] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.356538] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.357813] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.370827] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/version HTTP/1.1" 200 880 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.403689] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.404505] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.405543] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.406531] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Ff264a0d1-ddc4-4055-9415-c2f797cd592f%2Fw%22%2C%22xyz.radicle.ci.run%3Df264a0d1-ddc4-4055-9415-c2f797cd592f%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 941 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.424429] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.425259] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.427595] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70/json?size=false HTTP/1.1" 200 7914 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.444014] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.444864] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.446570] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/json?size=false HTTP/1.1" 200 7914 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.463256] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.464204] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.495146] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Created exec session 31806e7400ad940754adb75f78beb0a30e3f1824e7f1f26e46166380076b1cea in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.496307] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.497571] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/31806e7400ad940754adb75f78beb0a30e3f1824e7f1f26e46166380076b1cea/json HTTP/1.1" 200 395 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.498762] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 31806e7400ad940754adb75f78beb0a30e3f1824e7f1f26e46166380076b1cea and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.500409] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.513147] podman[961]: 2026-07-07 15:55:41.33874291 +0000 UTC m=+2.230962595 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.533768] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.534455] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.557046] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Created exec session bd97c2fff65affd6d9ea74fccd071a8d6e44ad107a8f41688e0fca6421ef6fef in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.558566] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.559825] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/bd97c2fff65affd6d9ea74fccd071a8d6e44ad107a8f41688e0fca6421ef6fef/json HTTP/1.1" 200 516 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.561037] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session bd97c2fff65affd6d9ea74fccd071a8d6e44ad107a8f41688e0fca6421ef6fef and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.562368] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.573301] podman[961]: 2026-07-07 15:55:41.398907819 +0000 UTC m=+2.291126666 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.618694] podman[961]: 2026-07-07 15:55:41.443782796 +0000 UTC m=+2.336011141 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.636582] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/bd97c2fff65affd6d9ea74fccd071a8d6e44ad107a8f41688e0fca6421ef6fef/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.639047] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/bd97c2fff65affd6d9ea74fccd071a8d6e44ad107a8f41688e0fca6421ef6fef/json HTTP/1.1" 200 515 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.640871] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session bd97c2fff65affd6d9ea74fccd071a8d6e44ad107a8f41688e0fca6421ef6fef"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.669456] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/bd97c2fff65affd6d9ea74fccd071a8d6e44ad107a8f41688e0fca6421ef6fef/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.689725] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.691016] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.716116] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Created exec session 22b9d0a3bd0f77f8b8bc892a2142e33bb52e8365c87b163d0ec1d699c2b5279d in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.720327] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.723046] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/22b9d0a3bd0f77f8b8bc892a2142e33bb52e8365c87b163d0ec1d699c2b5279d/json HTTP/1.1" 200 558 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.725374] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 22b9d0a3bd0f77f8b8bc892a2142e33bb52e8365c87b163d0ec1d699c2b5279d and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.727330] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.738306] podman[961]: 2026-07-07 15:55:41.563915383 +0000 UTC m=+2.456134230 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.787312] podman[961]: 2026-07-07 15:55:41.612491389 +0000 UTC m=+2.504720572 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.813355] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/22b9d0a3bd0f77f8b8bc892a2142e33bb52e8365c87b163d0ec1d699c2b5279d/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.819945] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/22b9d0a3bd0f77f8b8bc892a2142e33bb52e8365c87b163d0ec1d699c2b5279d/json HTTP/1.1" 200 557 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.824473] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 22b9d0a3bd0f77f8b8bc892a2142e33bb52e8365c87b163d0ec1d699c2b5279d"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.852966] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/22b9d0a3bd0f77f8b8bc892a2142e33bb52e8365c87b163d0ec1d699c2b5279d/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.865251] podman[961]: 2026-07-07 15:55:41.69084185 +0000 UTC m=+2.583060697 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.880622] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/31806e7400ad940754adb75f78beb0a30e3f1824e7f1f26e46166380076b1cea/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.882224] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/31806e7400ad940754adb75f78beb0a30e3f1824e7f1f26e46166380076b1cea/json HTTP/1.1" 200 394 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.883628] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 31806e7400ad940754adb75f78beb0a30e3f1824e7f1f26e46166380076b1cea"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.911314] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/31806e7400ad940754adb75f78beb0a30e3f1824e7f1f26e46166380076b1cea/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.963246] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.963985] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.992889] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Created exec session 8ccc464255bbdafc4c0be6575f1538782427d21726214551322da934400d1f36 in container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.993879] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.994824] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/8ccc464255bbdafc4c0be6575f1538782427d21726214551322da934400d1f36/json HTTP/1.1" 200 415 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.996578] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Going to start container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 8ccc464255bbdafc4c0be6575f1538782427d21726214551322da934400d1f36 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 24.997341] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.008023] podman[961]: 2026-07-07 15:55:41.833599938 +0000 UTC m=+2.725819902 container exec efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.054706] podman[961]: 2026-07-07 15:55:41.879453531 +0000 UTC m=+2.771681876 container exec_died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.071263] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/8ccc464255bbdafc4c0be6575f1538782427d21726214551322da934400d1f36/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.074979] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/exec/8ccc464255bbdafc4c0be6575f1538782427d21726214551322da934400d1f36/json HTTP/1.1" 200 414 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.077656] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="Removing container efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 exec session 8ccc464255bbdafc4c0be6575f1538782427d21726214551322da934400d1f36"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.093752] dhcpcd[708]: veth0: soliciting an IPv6 router
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.110797] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "POST /v5.8.4/libpod/exec/8ccc464255bbdafc4c0be6575f1538782427d21726214551322da934400d1f36/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.150983] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.152031] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.153044] podman[961]: time="2026-07-07T15:55:41Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.153946] podman[961]: @ - - [07/Jul/2026:15:55:41 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22xyz.radicle.ci.run%3Df264a0d1-ddc4-4055-9415-c2f797cd592f%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 941 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.272132] podman[961]: @ - - [07/Jul/2026:15:55:42 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.273177] podman[961]: @ - - [07/Jul/2026:15:55:42 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.274602] podman[961]: 2026-07-07 15:55:42.100208683 +0000 UTC m=+2.992427529 container sync efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.276626] podman[961]: @ - - [07/Jul/2026:15:55:42 +0000] "GET /v5.8.4/libpod/containers/json?all=true&filters=%7B%7D&sync=true HTTP/1.1" 200 941 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.277538] podman[961]: @ - - [07/Jul/2026:15:55:42 +0000] "GET /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/json?size=false HTTP/1.1" 200 7914 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.309797] systemd[1]: libpod-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1.scope: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.311243] podman[961]: @ - - [07/Jul/2026:15:55:39 +0000] "POST /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1/attach?detachKeys=ctrl-p%2Cctrl-q&detachkeys=ctrl-p%2Cctrl-q&stderr=true&stdout=true&stream=true HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.313499] podman[961]: 2026-07-07 15:55:42.138980091 +0000 UTC m=+3.031199776 container died efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[], xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.339735] podman[1462]: [INFO netavark::firewall] Using iptables firewall driver
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.421078] podman0: port 1(veth0) entered disabled state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.345730] dhcpcd[708]: veth0: carrier lost[ 25.421647] veth0 (unregistering): left allmulticast mode
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.421961] veth0 (unregistering): left promiscuous mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.422234] podman0: port 1(veth0) entered disabled state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.350592] podman[1462]: [INFO netavark::network::bridge] removing bridge podman0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.361275] dhcpcd[708]: veth0: deleting address fe80::acb8:beff:fece:26a2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.387191] dhcpcd[708]: veth0: removing interface
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.449842] systemd[1]: run-netns-netns\x2d49f2c57e\x2dea99\x2dbb96\x2d8f90\x2d1d84a02da0e8.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.505387] systemd[1]: var-lib-containers-storage-overlay\x2dcontainers-efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1-userdata-shm.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.507599] systemd[1]: var-lib-containers-storage-overlay-c5ffb5f306602a237733c3436b476d8e00a9d54f6442729d2c71918ab6891772-merged.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.663853] podman[961]: 2026-07-07 15:55:42.488746891 +0000 UTC m=+3.380971883 container remove efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 (image=localhost/radicle-e2e-fixture:latest, name=peaceful_hugle, xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.670141] systemd[1]: var-lib-containers-storage-overlay.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.671370] podman[961]: @ - - [07/Jul/2026:15:55:42 +0000] "DELETE /v5.8.4/libpod/containers/efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1?depend=false&force=true&ignore=true&volumes=false HTTP/1.1" 200 76 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.746394] cib[858]: {"timestamp":"2026-07-07T15:55:42.571086Z","level":"TRACE","fields":{"message":"adapter stdout line","msg_id":"AdapterStdoutLine","kind":"adapter_message","line":"\"{\\\"response\\\":\\\"finished\\\",\\\"result\\\":\\\"success\\\"}\\n\""},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.781647] cib[858]: {"timestamp":"2026-07-07T15:55:42.607093Z","level":"TRACE","fields":{"message":"Loaded 1 references","log.target":"cob","log.module_path":"radicle_cob::object::collaboration::list","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/object/collaboration/list.rs","log.line":30},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.791944] cib[858]: {"timestamp":"2026-07-07T15:55:42.607187Z","level":"TRACE","fields":{"message":"Loading object '5390f11622d05f63155b613538968a2967b42954'","log.target":"cob","log.module_path":"radicle_cob::object::collaboration::list","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/object/collaboration/list.rs","log.line":33},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.792541] cib[858]: {"timestamp":"2026-07-07T15:55:42.607239Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.792999] cib[858]: {"timestamp":"2026-07-07T15:55:42.612624Z","level":"TRACE","fields":{"message":"Object '5390f11622d05f63155b613538968a2967b42954' found","log.target":"cob","log.module_path":"radicle_cob::object::collaboration::list","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/object/collaboration/list.rs","log.line":39},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.793376] cib[858]: {"timestamp":"2026-07-07T15:55:42.613104Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.793764] cib[858]: {"timestamp":"2026-07-07T15:55:42.614130Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.806957] radicle-node[831]: Received command Seeds(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.808522] radicle-node[831]: Received command AnnounceRefs(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.809232] cib[858]: {"timestamp":"2026-07-07T15:55:42.634861Z","level":"INFO","fields":{"message":"failed to created or update job COB","msg_id":"JobFailure","kind":"start_run","repo_id":"RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)","oid":"7536a577ce91ed23373cb98b3abab3f283ae1939","error":"Some(Announce(Command { reason: \"runtime error: command failed: no refs were announced for rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL\" }))","msg":"failed to mark a run as succeeded"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.812241] cib[858]: {"timestamp":"2026-07-07T15:55:42.634953Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.218819Z INFO run: radicle_devcontainer_ci: loaded adapter config state=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.812499] cib[858]: {"timestamp":"2026-07-07T15:55:42.634962Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.219894Z INFO run:start{repo=rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL}: radicle_devcontainer_ci::state: starting run run=f264a0d1-ddc4-4055-9415-c2f797cd592f"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.812721] cib[858]: {"timestamp":"2026-07-07T15:55:42.634969Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.220710Z INFO run:start{repo=rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL}:record_step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Read trigger"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.812879] cib[858]: {"timestamp":"2026-07-07T15:55:42.634977Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.221229Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:checkout_source{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Checkout the source"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.813191] cib[858]: {"timestamp":"2026-07-07T15:55:42.634985Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.739143Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:checkout_source{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::source: source checked out commit=7536a577ce91ed23373cb98b3abab3f283ae1939"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.813391] cib[858]: {"timestamp":"2026-07-07T15:55:42.634992Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.740425Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:prepare_script{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:record_step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Assemble the CI script (from .radicle/devcontainer-ci.yaml)"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.813614] cib[858]: {"timestamp":"2026-07-07T15:55:42.634999Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.742498Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:prepare_script{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::script: assembled CI script origin=.radicle/devcontainer-ci.yaml script=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/s/script.sh"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.814116] cib[858]: {"timestamp":"2026-07-07T15:55:42.635007Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:38.742880Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_in_devcontainer{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:devcontainer_up{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Start the devcontainer"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.817293] cib[858]: {"timestamp":"2026-07-07T15:55:42.635014Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:40.146072Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_in_devcontainer{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:align_workspace_owner{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Check the workspace owner"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.820608] cib[858]: {"timestamp":"2026-07-07T15:55:42.635023Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:41.054572Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_in_devcontainer{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:devcontainer_exec{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Run the CI script in the devcontainer"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.839279] cib[858]: {"timestamp":"2026-07-07T15:55:42.635030Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:41.759608Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_in_devcontainer{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:restore_workspace_owner{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Restore the workspace owner"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.839598] cib[858]: {"timestamp":"2026-07-07T15:55:42.635038Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:41.963506Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_in_devcontainer{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:remove_devcontainer{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:step{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::state: starting step title=Remove the devcontainer"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.839823] cib[858]: {"timestamp":"2026-07-07T15:55:42.635046Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:42.570093Z INFO run:execute{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_ci{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}:run_in_devcontainer{run=f264a0d1-ddc4-4055-9415-c2f797cd592f}: radicle_devcontainer_ci::devcontainer: devcontainer run finished result=success"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.840031] cib[858]: {"timestamp":"2026-07-07T15:55:42.635054Z","level":"DEBUG","fields":{"message":"adapter exit code","msg_id":"AdapterExitCode","kind":"debug","exit":"ExitStatus(unix_wait_status(0))"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 25.840229] cib[858]: {"timestamp":"2026-07-07T15:55:42.656207Z","level":"INFO","fields":{"message":"Finish CI run","msg_id":"BrokerRunEnd","kind":"finish_run","run":"Run { broker_run_id: RunId { id: \"db459bf2-25da-422a-913c-5310e5c811fc\" }, adapter_run_id: Some(RunId { id: \"f264a0d1-ddc4-4055-9415-c2f797cd592f\" }), adapter_info_url: None, repo_id: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), repo_name: \"repo\", timestamp: \"2026-07-07 15:55:38Z\", whence: Branch { name: \"main\", commit: 7536a577ce91ed23373cb98b3abab3f283ae1939, who: Some(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB (alice)\") }, state: Finished, result: Some(Success), job_id: Some(JobId(ObjectId(5390f11622d05f63155b613538968a2967b42954))), timed_out: None }","broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc"},"span":{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"},"spans":[{"broker_run_id":"db459bf2-25da-422a-913c-5310e5c811fc","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 26.326917] cib[858]: {"timestamp":"2026-07-07T15:55:43.152165Z","level":"DEBUG","fields":{"message":"finished run","msg_id":"QueueProcFinishedRun","kind":"finish_run","repoid":"Some(RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL))"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: waiting for success: grep -Eq 'Result: (success|failure)' /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports/*.html, in 5.13 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: must succeed: cat /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports/*.html
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: must succeed: cat /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports/*.html, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> <!doctype html>
vm-test-run-radicle-devcontainer-ci-e2e> <html lang="en">
vm-test-run-radicle-devcontainer-ci-e2e> <head>
vm-test-run-radicle-devcontainer-ci-e2e> <meta charset="utf-8">
vm-test-run-radicle-devcontainer-ci-e2e> <title>Devcontainer CI report: f264a0d1-ddc4-4055-9415-c2f797cd592f</title>
vm-test-run-radicle-devcontainer-ci-e2e> <style>
vm-test-run-radicle-devcontainer-ci-e2e> body { font-family: sans-serif; max-width: 60em; margin: 2em auto; padding: 0 1em; }
vm-test-run-radicle-devcontainer-ci-e2e> pre { background: #f4f4f4; padding: 0.5em; overflow-x: auto; }
vm-test-run-radicle-devcontainer-ci-e2e> code { background: #f4f4f4; padding: 0 0.2em; }
vm-test-run-radicle-devcontainer-ci-e2e> .meta { color: #666; font-size: 0.9em; }
vm-test-run-radicle-devcontainer-ci-e2e> </style>
vm-test-run-radicle-devcontainer-ci-e2e> </head>
vm-test-run-radicle-devcontainer-ci-e2e> <body>
vm-test-run-radicle-devcontainer-ci-e2e> <h1>Devcontainer CI report: f264a0d1-ddc4-4055-9415-c2f797cd592f</h1>
vm-test-run-radicle-devcontainer-ci-e2e> <ul>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>Repository id: <code>rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL</code> repo</li>
vm-test-run-radicle-devcontainer-ci-e2e> <li>Commit: <code>7536a577ce91ed23373cb98b3abab3f283ae1939</code></li>
vm-test-run-radicle-devcontainer-ci-e2e> <li>Event: push</li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>Author: alice (<code>did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB</code>)</li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>Branch: <code>main</code></li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>Result: success</li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </ul>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Read trigger</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:38.220718972Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:38.220909778Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>{
vm-test-run-radicle-devcontainer-ci-e2e> "request": "trigger",
vm-test-run-radicle-devcontainer-ci-e2e> "version": 1,
vm-test-run-radicle-devcontainer-ci-e2e> "event_type": "push",
vm-test-run-radicle-devcontainer-ci-e2e> "repository": {
vm-test-run-radicle-devcontainer-ci-e2e> "id": "rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL",
vm-test-run-radicle-devcontainer-ci-e2e> "name": "repo",
vm-test-run-radicle-devcontainer-ci-e2e> "description": "",
vm-test-run-radicle-devcontainer-ci-e2e> "private": false,
vm-test-run-radicle-devcontainer-ci-e2e> "default_branch": "main",
vm-test-run-radicle-devcontainer-ci-e2e> "delegates": [
vm-test-run-radicle-devcontainer-ci-e2e> "did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB"
vm-test-run-radicle-devcontainer-ci-e2e> ]
vm-test-run-radicle-devcontainer-ci-e2e> },
vm-test-run-radicle-devcontainer-ci-e2e> "pusher": {
vm-test-run-radicle-devcontainer-ci-e2e> "id": "did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB",
vm-test-run-radicle-devcontainer-ci-e2e> "alias": "alice"
vm-test-run-radicle-devcontainer-ci-e2e> },
vm-test-run-radicle-devcontainer-ci-e2e> "before": "7536a577ce91ed23373cb98b3abab3f283ae1939",
vm-test-run-radicle-devcontainer-ci-e2e> "after": "7536a577ce91ed23373cb98b3abab3f283ae1939",
vm-test-run-radicle-devcontainer-ci-e2e> "branch": "main",
vm-test-run-radicle-devcontainer-ci-e2e> "commits": [
vm-test-run-radicle-devcontainer-ci-e2e> "7536a577ce91ed23373cb98b3abab3f283ae1939"
vm-test-run-radicle-devcontainer-ci-e2e> ]
vm-test-run-radicle-devcontainer-ci-e2e> }</pre>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Checkout the source</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:38.221267365Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:38.738587863Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ rad clone rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL .</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>✓ Creating checkout in ./...
vm-test-run-radicle-devcontainer-ci-e2e> ✓ Remote alice@z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB added
vm-test-run-radicle-devcontainer-ci-e2e> ✓ Remote-tracking branch alice@z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB/main created for z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB
vm-test-run-radicle-devcontainer-ci-e2e> ✓ Repository successfully cloned under /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w/
vm-test-run-radicle-devcontainer-ci-e2e> ╭──────────────────────╮
vm-test-run-radicle-devcontainer-ci-e2e> │ repo │
vm-test-run-radicle-devcontainer-ci-e2e> │ │
vm-test-run-radicle-devcontainer-ci-e2e> │ 0 issues · 0 patches │
vm-test-run-radicle-devcontainer-ci-e2e> ╰──────────────────────╯
vm-test-run-radicle-devcontainer-ci-e2e> Run `cd ./.` to go to the repository directory.
vm-test-run-radicle-devcontainer-ci-e2e> </pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ git config advice.detachedHead false</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre></pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ git checkout 7536a577ce91ed23373cb98b3abab3f283ae1939</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>HEAD is now at 7536a57 init
vm-test-run-radicle-devcontainer-ci-e2e> </pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ chmod -R g+rX .</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre></pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Assemble the CI script (from .radicle/devcontainer-ci.yaml)</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:38.740492853Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:38.741953095Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>#!/usr/bin/env bash
vm-test-run-radicle-devcontainer-ci-e2e> set -xeuo pipefail
vm-test-run-radicle-devcontainer-ci-e2e> git rev-parse HEAD
vm-test-run-radicle-devcontainer-ci-e2e> printenv RADICLE_E2E_SECRET > /dev/null
vm-test-run-radicle-devcontainer-ci-e2e> printf 'e2e-%s\n' complete
vm-test-run-radicle-devcontainer-ci-e2e> </pre>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Start the devcontainer</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:38.742888689Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:40.145887394Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ /nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer up --docker-path /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w --id-label xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>[2026-07-07T15:55:38.997Z] @devcontainers/cli 0.87.0. Node.js v24.16.0. linux 6.18.37 x64.
vm-test-run-radicle-devcontainer-ci-e2e> (node:948) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.
vm-test-run-radicle-devcontainer-ci-e2e> (Use `node --trace-deprecation ...` to show where the warning was created)
vm-test-run-radicle-devcontainer-ci-e2e> [2026-07-07T15:55:39.336Z] Start: Run: /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman run --sig-proxy=false -a STDOUT -a STDERR --mount type=bind,source=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w,target=/workspaces/w -l devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w -l xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f --security-opt label=disable --entrypoint /bin/sh -l devcontainer.metadata=[] localhost/radicle-e2e-fixture:latest -c echo Container started
vm-test-run-radicle-devcontainer-ci-e2e> [2026-07-07T15:55:39.698Z] Container started
vm-test-run-radicle-devcontainer-ci-e2e> {
vm-test-run-radicle-devcontainer-ci-e2e> message: 'Command in container failed: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null',
vm-test-run-radicle-devcontainer-ci-e2e> code: 1,
vm-test-run-radicle-devcontainer-ci-e2e> stdout: '',
vm-test-run-radicle-devcontainer-ci-e2e> stderr: ''
vm-test-run-radicle-devcontainer-ci-e2e> }
vm-test-run-radicle-devcontainer-ci-e2e> {"outcome":"success","containerId":"efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1","remoteUser":"root","remoteWorkspaceFolder":"/workspaces/w"}
vm-test-run-radicle-devcontainer-ci-e2e> </pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Check the workspace owner</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:40.146086022Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:41.053966772Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>gave the workspace (owner uid 997) to the container user (uid 0) for the run</pre>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ /nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer exec --docker-path /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w --id-label xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f /bin/sh -c echo "radicle-ci-ownership uid=$(id -u) owner=$(stat -c %u .)"</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>{
vm-test-run-radicle-devcontainer-ci-e2e> message: 'Command in container failed: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null',
vm-test-run-radicle-devcontainer-ci-e2e> code: 1,
vm-test-run-radicle-devcontainer-ci-e2e> stdout: '',
vm-test-run-radicle-devcontainer-ci-e2e> stderr: ''
vm-test-run-radicle-devcontainer-ci-e2e> }
vm-test-run-radicle-devcontainer-ci-e2e> radicle-ci-ownership uid=0 owner=997
vm-test-run-radicle-devcontainer-ci-e2e> </pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman exec --user 0 efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 chown -R 0 /workspaces/w</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre></pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Run the CI script in the devcontainer</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:41.054849566Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:41.758907763Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ /nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer exec --docker-path /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/f264a0d1-ddc4-4055-9415-c2f797cd592f/w --id-label xyz.radicle.ci.run=f264a0d1-ddc4-4055-9415-c2f797cd592f --remote-env RADICLE_CI_RUN_ID=f264a0d1-ddc4-4055-9415-c2f797cd592f --remote-env RADICLE_CI_EVENT=push --remote-env RADICLE_CI_COMMIT=7536a577ce91ed23373cb98b3abab3f283ae1939 --remote-env RADICLE_CI_REPOSITORY=rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL --remote-env RADICLE_CI_AUTHOR=did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB --remote-env RADICLE_CI_AUTHOR_ALIAS=alice --remote-env RADICLE_CI_BRANCH=main /bin/sh -c while IFS= read -r line && [ -n "$line" ]; do export "$line"; done && script="$(mktemp)" && cat >"$script" && chmod +x "$script" && exec "$script"</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>{
vm-test-run-radicle-devcontainer-ci-e2e> message: 'Command in container failed: (cat /etc/os-release || cat /usr/lib/os-release) 2>/dev/null',
vm-test-run-radicle-devcontainer-ci-e2e> code: 1,
vm-test-run-radicle-devcontainer-ci-e2e> stdout: '',
vm-test-run-radicle-devcontainer-ci-e2e> stderr: ''
vm-test-run-radicle-devcontainer-ci-e2e> }
vm-test-run-radicle-devcontainer-ci-e2e> + git rev-parse HEAD
vm-test-run-radicle-devcontainer-ci-e2e> 7536a577ce91ed23373cb98b3abab3f283ae1939
vm-test-run-radicle-devcontainer-ci-e2e> + printenv RADICLE_E2E_SECRET
vm-test-run-radicle-devcontainer-ci-e2e> + printf 'e2e-%s\n' complete
vm-test-run-radicle-devcontainer-ci-e2e> e2e-complete
vm-test-run-radicle-devcontainer-ci-e2e> </pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Restore the workspace owner</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:41.75996544Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:41.963287091Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman exec --user 0 efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1 chown -R 997 /workspaces/w</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre></pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <h2>Remove the devcontainer</h2>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">
vm-test-run-radicle-devcontainer-ci-e2e> Started at: 2026-07-07T15:55:41.963521758Z<br>
vm-test-run-radicle-devcontainer-ci-e2e> Ended at: 2026-07-07T15:55:42.569279473Z
vm-test-run-radicle-devcontainer-ci-e2e> </p>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> <li>
vm-test-run-radicle-devcontainer-ci-e2e> <p><code>$ /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman rm --force efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1</code></p>
vm-test-run-radicle-devcontainer-ci-e2e> <pre>efaf87ad0b70eb9364fec5cdd6d43eecc7355388bfca520d5d3aa9ed8fca4ba1
vm-test-run-radicle-devcontainer-ci-e2e> </pre>
vm-test-run-radicle-devcontainer-ci-e2e> <p class="meta">Exit code: 0</p>
vm-test-run-radicle-devcontainer-ci-e2e> </li>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </ol>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e>
vm-test-run-radicle-devcontainer-ci-e2e> </body>
vm-test-run-radicle-devcontainer-ci-e2e> </html>
vm-test-run-radicle-devcontainer-ci-e2e> seed: waiting for success: test -z "$(podman ps -aq --filter label=xyz.radicle.ci.run)"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 26.512520] systemd[1]: var-lib-containers-storage-overlay.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: waiting for success: test -z "$(podman ps -aq --filter label=xyz.radicle.ci.run)", in 0.02 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: must succeed: cibtool-system trigger --repo repo --node z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB --commit main
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: must succeed: cibtool-system trigger --repo repo --node z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB --commit main, in 0.08 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: waiting for success: [ $(grep -l 'Result: success' /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports/*.html | wc -l) -eq 2 ]
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 26.789262] cib[858]: {"timestamp":"2026-07-07T15:55:43.613756Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radicle.id at 7c466c437e77d33ff5babff724e8a161687223b3","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.327769] cib[858]: {"timestamp":"2026-07-07T15:55:44.152979Z","level":"INFO","fields":{"message":"picked an event from event queue","msg_id":"QueueProcPickedEvent","kind":"got_event","id":"ae02fcdc-7bd0-4d60-b4bf-fa7f2c7b8c0c","event":"QueuedCiEvent { id: QueueId { id: \"ae02fcdc-7bd0-4d60-b4bf-fa7f2c7b8c0c\" }, ts: \"2026-07-07 15:55:43.392009Z\", event: V1(BranchUpdated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939, old_tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 }) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.334902] cib[858]: {"timestamp":"2026-07-07T15:55:44.153097Z","level":"DEBUG","fields":{"message":"remove event from queue","msg_id":"QueueProcRemoveEvent","kind":"debug","event":"QueuedCiEvent { id: QueueId { id: \"ae02fcdc-7bd0-4d60-b4bf-fa7f2c7b8c0c\" }, ts: \"2026-07-07 15:55:43.392009Z\", event: V1(BranchUpdated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939, old_tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 }) }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.366714] cib[858]: {"timestamp":"2026-07-07T15:55:44.192091Z","level":"INFO","fields":{"message":"filter decision","msg_id":"QueueProcFilterDecision","kind":"filter_decision","event":"V1(BranchUpdated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939, old_tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })","filter":"And([HasFile(\".radicle/devcontainer-ci.yaml\"), DefaultBranch])","decision":"{\"filter\":\"And\",\"allowed\":true,\"reason\":\"(combo)\",\"children\":[{\"filter\":\"HasFile\",\"allowed\":true,\"reason\":\"repo=Some(RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)) tip=Some(7536a577ce91ed23373cb98b3abab3f283ae1939) wanted=\\\".radicle/devcontainer-ci.yaml\\\"\",\"children\":[]},{\"filter\":\"DefaultBranch\",\"allowed\":true,\"reason\":\"repo=Some(RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)) actual=Some(RefString(\\\"main\\\"))\",\"children\":[]}]}"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.368404] cib[858]: {"timestamp":"2026-07-07T15:55:44.192237Z","level":"DEBUG","fields":{"message":"broker database","msg_id":"BrokerDatabase","kind":"startup","filename":"/var/lib/radicle-ci/ci-broker.db"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.381083] cib[858]: {"timestamp":"2026-07-07T15:55:44.206592Z","level":"DEBUG","fields":{"message":"processing event","msg_id":"QueueProcProcessingEvent","kind":"got_event","event":"V1(BranchUpdated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939, old_tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })","adapter":"Adapter { bin: \"/nix/store/2ja6m6gfcyfprzf2rj9z2y8ba6khkk8r-radicle-devcontainer-ci-0.1.0/bin/radicle-devcontainer-ci\", env: {\"DOCKER_HOST\": \"unix:///run/podman/podman.sock\", \"PATH\": \"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin:/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin:/nix/store/0641h8qfqaxnwrsw2nzrz6i1wbzyx92l-bash-interactive-5.3p9/bin:/nix/store/sr26flm2nkfa12dkrwj2630kqsfakky4-coreutils-9.11/bin:/nix/store/8i9v4bamljjz8a9j077vvxqz0pbwr86i-docker-compose-5.2.0/bin:/nix/store/mkwrimym2n8jcx536g22f5qv74ggfccc-git-minimal-2.54.0/bin:/nix/store/r2hjw60rdpb3faxa6xglywxl77rx9ql2-radicle-node-1.9.1/bin\", \"CONTAINER_HOST\": \"unix:///run/podman/podman.sock\"}, config: {\"forward_env\": Sequence [String(\"RADICLE_E2E_SECRET\")], \"base_url\": Null, \"state\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state\"), \"runtime_path\": String(\"/nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman\"), \"log_file\": String(\"/var/log/radicle-ci/adapters/devcontainer/devcontainer.log\"), \"devcontainer_cli\": String(\"/nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer\"), \"reports\": String(\"/var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports\"), \"runtime\": String(\"podman\")}, config_env: Some(\"RAD_DCI_CONFIG\") }"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.381421] cib[858]: {"timestamp":"2026-07-07T15:55:44.206628Z","level":"DEBUG","fields":{"message":"Action: run","msg_id":"QueueProcActionRun","kind":"debug","event":"V1(BranchUpdated { from_node: PublicKey(z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB), repo: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), branch: RefString(\"main\"), tip: 7536a577ce91ed23373cb98b3abab3f283ae1939, old_tip: 7536a577ce91ed23373cb98b3abab3f283ae1939 })"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.390421] cib[858]: {"timestamp":"2026-07-07T15:55:44.207639Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radicle.id at 7c466c437e77d33ff5babff724e8a161687223b3","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.392101] cib[858]: {"timestamp":"2026-07-07T15:55:44.217734Z","level":"DEBUG","fields":{"message":"trigger request result","msg_id":"QueueProcTrigger","kind":"got_event","result":"Ok(Trigger { common: EventCommonFields { version: 1, event_type: Push, repository: Repository { id: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), name: \"repo\", description: \"\", private: false, default_branch: \"main\", delegates: [Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\")] } }, push: Some(PushEvent { pusher: Author { id: Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\"), alias: Some(Alias(\"alice\")) }, before: 7536a577ce91ed23373cb98b3abab3f283ae1939, after: 7536a577ce91ed23373cb98b3abab3f283ae1939, branch: \"main\", commits: [7536a577ce91ed23373cb98b3abab3f283ae1939] }), patch: None })"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.392456] cib[858]: {"timestamp":"2026-07-07T15:55:44.218089Z","level":"INFO","fields":{"message":"start CI run","msg_id":"BrokerRunStart","kind":"start_run","trigger":"Trigger { common: EventCommonFields { version: 1, event_type: Push, repository: Repository { id: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), name: \"repo\", description: \"\", private: false, default_branch: \"main\", delegates: [Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\")] } }, push: Some(PushEvent { pusher: Author { id: Did(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB\"), alias: Some(Alias(\"alice\")) }, before: 7536a577ce91ed23373cb98b3abab3f283ae1939, after: 7536a577ce91ed23373cb98b3abab3f283ae1939, branch: \"main\", commits: [7536a577ce91ed23373cb98b3abab3f283ae1939] }), patch: None }","broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.418910] cib[858]: {"timestamp":"2026-07-07T15:55:44.244512Z","level":"DEBUG","fields":{"message":"adapter config embedded in cib config","msg_id":"AdapterTempConfig","kind":"adapter_message","filename":"\"/tmp/.tmpG3V5Z6/adapter.yaml\"","config":"\"forward_env:\\n- RADICLE_E2E_SECRET\\nbase_url: null\\nstate: /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state\\nruntime_path: /nix/store/12rmq9mj1l1sfkwpc17kbql7m8f1my1c-podman-5.8.4/bin/podman\\nlog_file: /var/log/radicle-ci/adapters/devcontainer/devcontainer.log\\ndevcontainer_cli: /nix/store/kkygaz39kinz51srgl91gzpkzz86kg7v-devcontainer-0.87.0/bin/devcontainer\\nreports: /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports\\nruntime: podman\\n\""},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.432159] radicle-node[831]: Received command Seed(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL, followed)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.450281] cib[858]: {"timestamp":"2026-07-07T15:55:44.275905Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.451032] cib[858]: {"timestamp":"2026-07-07T15:55:44.276656Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 27.452589] cib[858]: {"timestamp":"2026-07-07T15:55:44.278213Z","level":"DEBUG","fields":{"message":"created run for job COB","msg_id":"JobRunCreate","kind":"start_run","job_id":"JobId(ObjectId(5390f11622d05f63155b613538968a2967b42954))","run_id":"398c1821-c92e-4578-a403-5afa6802a427"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.087092] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.087812] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.103512] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.104254] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.117246] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/version HTTP/1.1" 200 880 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.151356] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.152306] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.153229] podman[961]: time="2026-07-07T15:55:44Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.153641] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Fe706b149-e3ba-4c04-b7ac-c86e3d2a1959%2Fw%22%2C%22xyz.radicle.ci.run%3De706b149-e3ba-4c04-b7ac-c86e3d2a1959%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 3 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.169818] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.170958] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.172693] podman[961]: @ - - [07/Jul/2026:15:55:44 +0000] "GET /v5.8.4/libpod/images/localhost%2Fradicle-e2e-fixture:latest/json?size=false HTTP/1.1" 200 1125 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.192869] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.193968] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.203754] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.205754] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.207875] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/images/pull?alltags=false&arch=&authfile=&os=&policy=missing&quiet=false&reference=localhost%2Fradicle-e2e-fixture%3Alatest&variant= HTTP/1.1" 200 152 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.210555] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/images/localhost%2Fradicle-e2e-fixture:latest/json?size=false HTTP/1.1" 200 1125 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.230093] podman[961]: 2026-07-07 15:55:45.033479531 +0000 UTC m=+5.925698657 image pull d42bce02a9345e4e33b02f58782052a51b1c0e8e8f3533ae487aeeaefc9c79aa localhost/radicle-e2e-fixture:latest
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.252772] podman[961]: 2026-07-07 15:55:45.078379651 +0000 UTC m=+5.970599056 container create 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959, devcontainer.metadata=[], devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.253160] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/containers/create HTTP/1.1" 201 88 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.256363] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/json?size=false HTTP/1.1" 200 6453 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.261340] podman[1635]: [INFO netavark::firewall] Using iptables firewall driver
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.268456] (udev-worker)[1634]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.345049] podman0: port 1(veth0) entered blocking state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.345325] podman0: port 1(veth0) entered disabled state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.345610] veth0: entered allmulticast mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.346382] veth0: entered promiscuous mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.271688] (udev-worker)[1639]: Network interface NamePolicy= disabled on kernel command line.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.348071] podman0: port 1(veth0) entered blocking state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.348330] podman0: port 1(veth0) entered forwarding state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.272969] podman[1635]: [INFO netavark::network::netlink_route] Adding route (dest: 0.0.0.0/0 ,gw: 10.88.0.1, metric 100)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.289622] dhcpcd[708]: veth0: IAID be:ce:26:a2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.289946] dhcpcd[708]: veth0: adding address fe80::acb8:beff:fece:26a2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.373876] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.381423] systemd[1]: Started libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.399231] systemd[1]: Started libcrun container.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.402786] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Got Conmon PID as 1685"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.416155] podman[961]: 2026-07-07 15:55:45.241753767 +0000 UTC m=+6.133973452 container init 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.416550] podman[961]: 2026-07-07 15:55:45.241811596 +0000 UTC m=+6.134031280 container attach 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.416884] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Performing HTTP Hijack attach to container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.421714] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="The detach keys parameter is not supported on start container"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.424873] podman[961]: 2026-07-07 15:55:45.250490073 +0000 UTC m=+6.142708920 container start 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.427212] charming_archimedes[1685]: Container started
vm-test-run-radicle-devcontainer-ci-e2e> seed #
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.443471] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/start?detachkeys=ctrl-p%2Cctrl-q HTTP/1.1" 204 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.678455] dhcpcd[708]: veth0: soliciting a DHCP lease
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.711123] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.711991] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.713834] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/json?size=false HTTP/1.1" 200 7855 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.717461] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/events?filters=%7B%22event%22%3A%5B%22start%22%5D%7D&since=&stream=true&until= HTTP/1.1" 200 641 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.730973] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.732066] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.733117] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.733833] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Fe706b149-e3ba-4c04-b7ac-c86e3d2a1959%2Fw%22%2C%22xyz.radicle.ci.run%3De706b149-e3ba-4c04-b7ac-c86e3d2a1959%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 947 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.748811] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.749973] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.751805] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059/json?size=false HTTP/1.1" 200 7855 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.766489] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.767356] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.768800] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/json?size=false HTTP/1.1" 200 7855 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.786500] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.787725] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.823880] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Created exec session 499350a597e918b3c3d15a4192a869f2412cbacdc967dddf093a36daa07c1612 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.825073] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.829898] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/exec/499350a597e918b3c3d15a4192a869f2412cbacdc967dddf093a36daa07c1612/json HTTP/1.1" 200 395 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.832201] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 499350a597e918b3c3d15a4192a869f2412cbacdc967dddf093a36daa07c1612 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.834461] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.846164] podman[961]: 2026-07-07 15:55:45.671771549 +0000 UTC m=+6.563990395 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.877538] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.879474] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.907065] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Created exec session 1dd34f1fc168a31cb3286d08efce1026174cfa7795cd27caca4883735fa0f051 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.908595] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.909884] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/exec/1dd34f1fc168a31cb3286d08efce1026174cfa7795cd27caca4883735fa0f051/json HTTP/1.1" 200 516 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.910967] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 1dd34f1fc168a31cb3286d08efce1026174cfa7795cd27caca4883735fa0f051 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.912356] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.919597] podman[961]: 2026-07-07 15:55:45.745204625 +0000 UTC m=+6.637423751 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.938412] podman[961]: 2026-07-07 15:55:45.76382403 +0000 UTC m=+6.656044553 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.958248] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/exec/499350a597e918b3c3d15a4192a869f2412cbacdc967dddf093a36daa07c1612/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.959250] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/exec/499350a597e918b3c3d15a4192a869f2412cbacdc967dddf093a36daa07c1612/json HTTP/1.1" 200 394 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.960251] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 499350a597e918b3c3d15a4192a869f2412cbacdc967dddf093a36daa07c1612"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.987572] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/exec/499350a597e918b3c3d15a4192a869f2412cbacdc967dddf093a36daa07c1612/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.988712] podman[961]: 2026-07-07 15:55:45.813813065 +0000 UTC m=+6.706032191 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 28.991726] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/wait HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.003502] podman[961]: time="2026-07-07T15:55:45Z" level=error msg="attaching to container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 1dd34f1fc168a31cb3286d08efce1026174cfa7795cd27caca4883735fa0f051: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.003793] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/exec/1dd34f1fc168a31cb3286d08efce1026174cfa7795cd27caca4883735fa0f051/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.003994] podman[961]: time="2026-07-07T15:55:45Z" level=error msg="Writing header for container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 attach connection error: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.004274] podman[961]: time="2026-07-07T15:55:45Z" level=error msg="Writing error to container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 HTTP attach connection: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.004487] podman[961]: time="2026-07-07T15:55:45Z" level=error msg="Flushing HTTP buffer for container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 HTTP attach connection: write unix /run/podman/podman.sock->@: write: broken pipe"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.061039] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.062297] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.077375] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.078526] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.090690] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/version HTTP/1.1" 200 880 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.122930] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.123712] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.124495] podman[961]: time="2026-07-07T15:55:45Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.125519] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Fe706b149-e3ba-4c04-b7ac-c86e3d2a1959%2Fw%22%2C%22xyz.radicle.ci.run%3De706b149-e3ba-4c04-b7ac-c86e3d2a1959%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 947 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.142127] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.143083] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.146191] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059/json?size=false HTTP/1.1" 200 7921 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.162372] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.163420] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.165064] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/json?size=false HTTP/1.1" 200 7921 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.181506] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.182220] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.207366] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Created exec session 5f9d32cd6dc4f0359a5af9cff32cabb11e9c67ccb97abc2875b44351d085751e in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.207766] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.209882] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/5f9d32cd6dc4f0359a5af9cff32cabb11e9c67ccb97abc2875b44351d085751e/json HTTP/1.1" 200 395 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.211391] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 5f9d32cd6dc4f0359a5af9cff32cabb11e9c67ccb97abc2875b44351d085751e and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.213232] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.224125] podman[961]: 2026-07-07 15:55:46.049730479 +0000 UTC m=+6.941949605 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.244622] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.245636] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.269885] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Created exec session e953e1255be4b7d11971d0a795d19cf285161d4345d1fe6d82b4a552b52404ed in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.271252] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.272287] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/e953e1255be4b7d11971d0a795d19cf285161d4345d1fe6d82b4a552b52404ed/json HTTP/1.1" 200 516 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.273386] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session e953e1255be4b7d11971d0a795d19cf285161d4345d1fe6d82b4a552b52404ed and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.274974] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.286057] podman[961]: 2026-07-07 15:55:46.111636392 +0000 UTC m=+7.003855238 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.334291] podman[961]: 2026-07-07 15:55:46.159524601 +0000 UTC m=+7.051753505 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.346933] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/e953e1255be4b7d11971d0a795d19cf285161d4345d1fe6d82b4a552b52404ed/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.349761] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/e953e1255be4b7d11971d0a795d19cf285161d4345d1fe6d82b4a552b52404ed/json HTTP/1.1" 200 515 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.352148] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session e953e1255be4b7d11971d0a795d19cf285161d4345d1fe6d82b4a552b52404ed"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.378178] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/e953e1255be4b7d11971d0a795d19cf285161d4345d1fe6d82b4a552b52404ed/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.400376] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.401644] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.425332] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Created exec session 48db2523d79aa4abae642d75aeedde2eb57efa477cae6d06a388ff32ddb3c8f7 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.426078] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.429775] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/48db2523d79aa4abae642d75aeedde2eb57efa477cae6d06a388ff32ddb3c8f7/json HTTP/1.1" 200 464 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.431796] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 48db2523d79aa4abae642d75aeedde2eb57efa477cae6d06a388ff32ddb3c8f7 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.433420] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.445215] podman[961]: 2026-07-07 15:55:46.270800196 +0000 UTC m=+7.163019322 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.496338] podman[961]: 2026-07-07 15:55:46.320771631 +0000 UTC m=+7.213000255 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.516995] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/48db2523d79aa4abae642d75aeedde2eb57efa477cae6d06a388ff32ddb3c8f7/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.521861] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/48db2523d79aa4abae642d75aeedde2eb57efa477cae6d06a388ff32ddb3c8f7/json HTTP/1.1" 200 463 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.525295] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 48db2523d79aa4abae642d75aeedde2eb57efa477cae6d06a388ff32ddb3c8f7"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.552253] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/48db2523d79aa4abae642d75aeedde2eb57efa477cae6d06a388ff32ddb3c8f7/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.560062] podman[961]: 2026-07-07 15:55:46.385498293 +0000 UTC m=+7.277718257 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.572102] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/5f9d32cd6dc4f0359a5af9cff32cabb11e9c67ccb97abc2875b44351d085751e/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.573460] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/5f9d32cd6dc4f0359a5af9cff32cabb11e9c67ccb97abc2875b44351d085751e/json HTTP/1.1" 200 394 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.574642] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 5f9d32cd6dc4f0359a5af9cff32cabb11e9c67ccb97abc2875b44351d085751e"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.599821] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/5f9d32cd6dc4f0359a5af9cff32cabb11e9c67ccb97abc2875b44351d085751e/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.673119] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.673994] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.697504] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Created exec session 2f537f561a34666175b1eb0c3edf9efdc6134852120f36c14428cc4c128ea576 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.698930] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.700267] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/2f537f561a34666175b1eb0c3edf9efdc6134852120f36c14428cc4c128ea576/json HTTP/1.1" 200 413 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.701246] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 2f537f561a34666175b1eb0c3edf9efdc6134852120f36c14428cc4c128ea576 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.702802] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.719678] podman[961]: 2026-07-07 15:55:46.545285082 +0000 UTC m=+7.437503928 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.772249] podman[961]: 2026-07-07 15:55:46.596639374 +0000 UTC m=+7.488867719 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.792741] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/2f537f561a34666175b1eb0c3edf9efdc6134852120f36c14428cc4c128ea576/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.798288] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/2f537f561a34666175b1eb0c3edf9efdc6134852120f36c14428cc4c128ea576/json HTTP/1.1" 200 412 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.799980] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 2f537f561a34666175b1eb0c3edf9efdc6134852120f36c14428cc4c128ea576"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.828651] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/2f537f561a34666175b1eb0c3edf9efdc6134852120f36c14428cc4c128ea576/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.991306] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 29.992155] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.006977] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.008088] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.020333] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/version HTTP/1.1" 200 880 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.052643] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.053437] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.054352] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.055077] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22devcontainer.local_folder%3D%2Fvar%2Flib%2Fradicle-ci%2Fadapters%2Fdevcontainer%2Fdevcontainer%2Fstate%2Fe706b149-e3ba-4c04-b7ac-c86e3d2a1959%2Fw%22%2C%22xyz.radicle.ci.run%3De706b149-e3ba-4c04-b7ac-c86e3d2a1959%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 947 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.071018] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.072049] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.073843] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059/json?size=false HTTP/1.1" 200 7921 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.089434] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.090789] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.091758] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/json?size=false HTTP/1.1" 200 7921 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.106700] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.107393] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.139131] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Created exec session bf69c46e6cb1c284997c34f59c76430b1de8330d970787d90bd8e909df4a4166 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.139430] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.141550] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "GET /v5.8.4/libpod/exec/bf69c46e6cb1c284997c34f59c76430b1de8330d970787d90bd8e909df4a4166/json HTTP/1.1" 200 395 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.143081] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session bf69c46e6cb1c284997c34f59c76430b1de8330d970787d90bd8e909df4a4166 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.144526] podman[961]: time="2026-07-07T15:55:46Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.154931] podman[961]: 2026-07-07 15:55:46.980545429 +0000 UTC m=+7.872764276 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.176373] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.177656] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.200570] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Created exec session 1627ff7b617cdb10978d99627ee96a7b2d10757f0768f964eacfdd804a415848 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.202307] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.203385] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/exec/1627ff7b617cdb10978d99627ee96a7b2d10757f0768f964eacfdd804a415848/json HTTP/1.1" 200 516 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.204383] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 1627ff7b617cdb10978d99627ee96a7b2d10757f0768f964eacfdd804a415848 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.205883] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.220187] podman[961]: 2026-07-07 15:55:47.04573444 +0000 UTC m=+7.937953566 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.268083] podman[961]: 2026-07-07 15:55:47.093436593 +0000 UTC m=+7.985661306 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.287547] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/exec/1627ff7b617cdb10978d99627ee96a7b2d10757f0768f964eacfdd804a415848/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.290591] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/exec/1627ff7b617cdb10978d99627ee96a7b2d10757f0768f964eacfdd804a415848/json HTTP/1.1" 200 515 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.292498] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 1627ff7b617cdb10978d99627ee96a7b2d10757f0768f964eacfdd804a415848"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.319485] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/exec/1627ff7b617cdb10978d99627ee96a7b2d10757f0768f964eacfdd804a415848/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.341896] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.342574] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.366489] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Created exec session e2417fd52103a135ac320e32c17bc0316db625f592b2a2c264573858c43085c6 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.368123] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.369222] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/exec/e2417fd52103a135ac320e32c17bc0316db625f592b2a2c264573858c43085c6/json HTTP/1.1" 200 558 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.370163] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session e2417fd52103a135ac320e32c17bc0316db625f592b2a2c264573858c43085c6 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.371877] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.386499] podman[961]: 2026-07-07 15:55:47.212080443 +0000 UTC m=+8.104299568 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[])
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.434430] podman[961]: 2026-07-07 15:55:47.258555064 +0000 UTC m=+8.150782292 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.468521] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/exec/e2417fd52103a135ac320e32c17bc0316db625f592b2a2c264573858c43085c6/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.476071] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/exec/e2417fd52103a135ac320e32c17bc0316db625f592b2a2c264573858c43085c6/json HTTP/1.1" 200 557 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.479744] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session e2417fd52103a135ac320e32c17bc0316db625f592b2a2c264573858c43085c6"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.508148] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/exec/e2417fd52103a135ac320e32c17bc0316db625f592b2a2c264573858c43085c6/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.524230] podman[961]: 2026-07-07 15:55:47.349811355 +0000 UTC m=+8.242030481 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.539793] podman[961]: @ - - [07/Jul/2026:15:55:46 +0000] "POST /v5.8.4/libpod/exec/bf69c46e6cb1c284997c34f59c76430b1de8330d970787d90bd8e909df4a4166/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.541899] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/exec/bf69c46e6cb1c284997c34f59c76430b1de8330d970787d90bd8e909df4a4166/json HTTP/1.1" 200 394 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.543877] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session bf69c46e6cb1c284997c34f59c76430b1de8330d970787d90bd8e909df4a4166"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.574712] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/exec/bf69c46e6cb1c284997c34f59c76430b1de8330d970787d90bd8e909df4a4166/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.579590] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.580726] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.605429] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Created exec session 074e8a7819a0d8d2211e2e0e0475b1ed979fbb1fa1d57e6849f8ff87a91813b7 in container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.606097] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/exec HTTP/1.1" 201 74 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.611276] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/exec/074e8a7819a0d8d2211e2e0e0475b1ed979fbb1fa1d57e6849f8ff87a91813b7/json HTTP/1.1" 200 415 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.613790] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Going to start container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 074e8a7819a0d8d2211e2e0e0475b1ed979fbb1fa1d57e6849f8ff87a91813b7 and attach to it"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.615899] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Running conmon under slice machine.slice and unitName libpod-conmon-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.635379] podman[961]: 2026-07-07 15:55:47.460982747 +0000 UTC m=+8.353201873 container exec 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.685089] podman[961]: 2026-07-07 15:55:47.509977242 +0000 UTC m=+8.402200838 container exec_died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.706583] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/exec/074e8a7819a0d8d2211e2e0e0475b1ed979fbb1fa1d57e6849f8ff87a91813b7/start HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.708236] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/exec/074e8a7819a0d8d2211e2e0e0475b1ed979fbb1fa1d57e6849f8ff87a91813b7/json HTTP/1.1" 200 414 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.709395] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="Removing container 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 exec session 074e8a7819a0d8d2211e2e0e0475b1ed979fbb1fa1d57e6849f8ff87a91813b7"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.732874] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "POST /v5.8.4/libpod/exec/074e8a7819a0d8d2211e2e0e0475b1ed979fbb1fa1d57e6849f8ff87a91813b7/remove HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.806388] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.807175] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.808096] podman[961]: time="2026-07-07T15:55:47Z" level=info msg="List containers: received `last` parameter - overwriting `limit`"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.809039] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/containers/json?all=true&external=false&filters=%7B%22label%22%3A%5B%22xyz.radicle.ci.run%3De706b149-e3ba-4c04-b7ac-c86e3d2a1959%22%5D%7D&last=-1&namespace=false&size=false&sync=false HTTP/1.1" 200 947 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.909132] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.909950] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/_ping HTTP/1.1" 200 2 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.910945] podman[961]: 2026-07-07 15:55:47.736556877 +0000 UTC m=+8.628776003 container sync 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.912966] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/containers/json?all=true&filters=%7B%7D&sync=true HTTP/1.1" 200 947 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.914113] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "GET /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/json?size=false HTTP/1.1" 200 7921 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.946600] systemd[1]: libpod-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.948610] conmon[1685]: conmon 05e014ce7059365a1123 <nwarn>: Failed to open cgroups file: /sys/fs/cgroup/machine.slice/libpod-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387.scope/container/memory.events
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.950929] podman[961]: @ - - [07/Jul/2026:15:55:45 +0000] "POST /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387/attach?detachKeys=ctrl-p%2Cctrl-q&detachkeys=ctrl-p%2Cctrl-q&stderr=true&stdout=true&stream=true HTTP/1.1" 200 0 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.952867] podman[961]: 2026-07-07 15:55:47.775929759 +0000 UTC m=+8.668149164 container died 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.977971] podman[2057]: [INFO netavark::firewall] Using iptables firewall driver
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.059068] podman0: port 1(veth0) entered disabled state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.983892] dhcpcd[708]: veth0: carrier lost
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.059960] veth0 (unregistering): left allmulticast mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.060223] veth0 (unregistering): left promiscuous mode
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.060507] podman0: port 1(veth0) entered disabled state
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 30.988573] podman[2057]: [INFO netavark::network::bridge] removing bridge podman0
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.002842] dhcpcd[708]: veth0: deleting address fe80::acb8:beff:fece:26a2
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.024131] dhcpcd[708]: veth0: removing interface
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.098796] systemd[1]: run-netns-netns\x2da839fd83\x2d0ef8\x2d26f1\x2ddb16\x2d9a0962c7d29b.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.136647] systemd[1]: var-lib-containers-storage-overlay-8f1396622dd2408d0dfbad7ef9be0eba4055850cf9f3f3d9a028d97e36c5cdad-merged.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.138993] systemd[1]: var-lib-containers-storage-overlay\x2dcontainers-05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387-userdata-shm.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.258253] podman[961]: 2026-07-07 15:55:48.076848451 +0000 UTC m=+8.969076516 container remove 05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387 (image=localhost/radicle-e2e-fixture:latest, name=charming_archimedes, devcontainer.metadata=[], xyz.radicle.ci.run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959, devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/w)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.267632] podman[961]: @ - - [07/Jul/2026:15:55:47 +0000] "DELETE /v5.8.4/libpod/containers/05e014ce7059365a1123759fadf2c849460c5d3a98a03ac92d5b820672fea387?depend=false&force=true&ignore=true&volumes=false HTTP/1.1" 200 76 "" "Go-http-client/1.1"
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.269613] systemd[1]: var-lib-containers-storage-overlay.mount: Deactivated successfully.
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.275291] cib[858]: {"timestamp":"2026-07-07T15:55:48.100666Z","level":"TRACE","fields":{"message":"adapter stdout line","msg_id":"AdapterStdoutLine","kind":"adapter_message","line":"\"{\\\"response\\\":\\\"finished\\\",\\\"result\\\":\\\"success\\\"}\\n\""},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.298550] cib[858]: {"timestamp":"2026-07-07T15:55:48.124049Z","level":"TRACE","fields":{"message":"Loaded 1 references","log.target":"cob","log.module_path":"radicle_cob::object::collaboration::list","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/object/collaboration/list.rs","log.line":30},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.299752] cib[858]: {"timestamp":"2026-07-07T15:55:48.124114Z","level":"TRACE","fields":{"message":"Loading object '5390f11622d05f63155b613538968a2967b42954'","log.target":"cob","log.module_path":"radicle_cob::object::collaboration::list","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/object/collaboration/list.rs","log.line":33},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.300570] cib[858]: {"timestamp":"2026-07-07T15:55:48.124145Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.310483] cib[858]: {"timestamp":"2026-07-07T15:55:48.136122Z","level":"TRACE","fields":{"message":"Object '5390f11622d05f63155b613538968a2967b42954' found","log.target":"cob","log.module_path":"radicle_cob::object::collaboration::list","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/object/collaboration/list.rs","log.line":39},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.312971] cib[858]: {"timestamp":"2026-07-07T15:55:48.138601Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.315445] cib[858]: {"timestamp":"2026-07-07T15:55:48.139008Z","level":"DEBUG","fields":{"message":"Loading object of type xyz.radworks.job at 5390f11622d05f63155b613538968a2967b42954","log.target":"cob","log.module_path":"radicle_cob::change_graph","log.file":"/build/radicle-ci-broker-0.29.0-vendor/source-registry-0/radicle-cob-0.19.0/src/change_graph.rs","log.line":42},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.318045] radicle-node[831]: Received command Seeds(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.318745] cib[858]: {"timestamp":"2026-07-07T15:55:48.143522Z","level":"INFO","fields":{"message":"failed to created or update job COB","msg_id":"JobFailure","kind":"start_run","repo_id":"RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)","oid":"7536a577ce91ed23373cb98b3abab3f283ae1939","error":"Some(Announce(Command { reason: \"runtime error: command failed: no refs were announced for rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL\" }))","msg":"failed to mark a run as succeeded"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.321595] cib[858]: {"timestamp":"2026-07-07T15:55:48.143562Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.252048Z INFO run: radicle_devcontainer_ci: loaded adapter config state=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.321790] cib[858]: {"timestamp":"2026-07-07T15:55:48.143570Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.252096Z INFO run:start{repo=rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL}: radicle_devcontainer_ci::state: starting run run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.322045] radicle-node[831]: Received command AnnounceRefs(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL)
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.322387] cib[858]: {"timestamp":"2026-07-07T15:55:48.143577Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.252206Z INFO run:start{repo=rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL}:record_step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Read trigger"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.322585] cib[858]: {"timestamp":"2026-07-07T15:55:48.143584Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.252712Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:checkout_source{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Checkout the source"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.322798] cib[858]: {"timestamp":"2026-07-07T15:55:48.143590Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.767178Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:checkout_source{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::source: source checked out commit=7536a577ce91ed23373cb98b3abab3f283ae1939"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.323029] cib[858]: {"timestamp":"2026-07-07T15:55:48.143597Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.767506Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:prepare_script{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:record_step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Assemble the CI script (from .radicle/devcontainer-ci.yaml)"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.323221] cib[858]: {"timestamp":"2026-07-07T15:55:48.143604Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.769303Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:prepare_script{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::script: assembled CI script origin=.radicle/devcontainer-ci.yaml script=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/e706b149-e3ba-4c04-b7ac-c86e3d2a1959/s/script.sh"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.323885] cib[858]: {"timestamp":"2026-07-07T15:55:48.143611Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:44.769473Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_in_devcontainer{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:devcontainer_up{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Start the devcontainer"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.327104] cib[858]: {"timestamp":"2026-07-07T15:55:48.143618Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:45.775502Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_in_devcontainer{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:align_workspace_owner{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Check the workspace owner"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.330390] cib[858]: {"timestamp":"2026-07-07T15:55:48.143625Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:46.682146Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_in_devcontainer{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:devcontainer_exec{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Run the CI script in the devcontainer"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.333739] cib[858]: {"timestamp":"2026-07-07T15:55:48.143633Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:47.387922Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_in_devcontainer{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:restore_workspace_owner{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Restore the workspace owner"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.337050] cib[858]: {"timestamp":"2026-07-07T15:55:48.143640Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:47.591906Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_in_devcontainer{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:remove_devcontainer{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:step{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::state: starting step title=Remove the devcontainer"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.340320] cib[858]: {"timestamp":"2026-07-07T15:55:48.143647Z","level":"DEBUG","fields":{"message":"adapter stderr","msg_id":"AdapterStderrLine","kind":"debug","stderr_line":"2026-07-07T15:55:48.100349Z INFO run:execute{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_ci{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}:run_in_devcontainer{run=e706b149-e3ba-4c04-b7ac-c86e3d2a1959}: radicle_devcontainer_ci::devcontainer: devcontainer run finished result=success"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.357620] cib[858]: {"timestamp":"2026-07-07T15:55:48.143654Z","level":"DEBUG","fields":{"message":"adapter exit code","msg_id":"AdapterExitCode","kind":"debug","exit":"ExitStatus(unix_wait_status(0))"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.372327] cib[858]: {"timestamp":"2026-07-07T15:55:48.197935Z","level":"INFO","fields":{"message":"Finish CI run","msg_id":"BrokerRunEnd","kind":"finish_run","run":"Run { broker_run_id: RunId { id: \"398c1821-c92e-4578-a403-5afa6802a427\" }, adapter_run_id: Some(RunId { id: \"e706b149-e3ba-4c04-b7ac-c86e3d2a1959\" }), adapter_info_url: None, repo_id: RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL), repo_name: \"repo\", timestamp: \"2026-07-07 15:55:44Z\", whence: Branch { name: \"main\", commit: 7536a577ce91ed23373cb98b3abab3f283ae1939, who: Some(\"did:key:z6MksEEGhJAfvoYQQoXCJb1YHeGX7ZZFeixXFXiY2v8HQhZB (alice)\") }, state: Finished, result: Some(Success), job_id: Some(JobId(ObjectId(5390f11622d05f63155b613538968a2967b42954))), timed_out: None }","broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427"},"span":{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"},"spans":[{"broker_run_id":"398c1821-c92e-4578-a403-5afa6802a427","name":"execute_ci_run"}]}
vm-test-run-radicle-devcontainer-ci-e2e> seed # [ 31.381957] cib[858]: {"timestamp":"2026-07-07T15:55:48.207561Z","level":"DEBUG","fields":{"message":"finished run","msg_id":"QueueProcFinishedRun","kind":"finish_run","repoid":"Some(RepoId(rad:z2qj4R3si1DiwuWqcU2V46gF4GjwL))"}}
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: waiting for success: [ $(grep -l 'Result: success' /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports/*.html | wc -l) -eq 2 ], in 5.15 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: waiting for success: test -z "$(podman ps -aq --filter label=xyz.radicle.ci.run)"
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: waiting for success: test -z "$(podman ps -aq --filter label=xyz.radicle.ci.run)", in 0.02 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: must succeed: ! grep -rF 'e2e-forwarded-deploy-token-hunter2' /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: must succeed: ! grep -rF 'e2e-forwarded-deploy-token-hunter2' /var/lib/radicle-ci/adapters/devcontainer/devcontainer/reports, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: must succeed: ! grep -rF 'e2e-forwarded-deploy-token-hunter2' /var/lib/radicle-ci/adapters/devcontainer/devcontainer
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: must succeed: ! grep -rF 'e2e-forwarded-deploy-token-hunter2' /var/lib/radicle-ci/adapters/devcontainer/devcontainer, in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> seed: must fail: journalctl -u radicle-ci-broker --grep 'e2e-forwarded-deploy-token-hunter2'
vm-test-run-radicle-devcontainer-ci-e2e> seed: (finished: must fail: journalctl -u radicle-ci-broker --grep 'e2e-forwarded-deploy-token-hunter2', in 0.01 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> (finished: run the VM test script, in 32.37 seconds)
vm-test-run-radicle-devcontainer-ci-e2e> test script finished in 32.40s
vm-test-run-radicle-devcontainer-ci-e2e> cleanup
vm-test-run-radicle-devcontainer-ci-e2e> kill QemuMachine (pid 26334)
vm-test-run-radicle-devcontainer-ci-e2e> alice # qemu-system-x86_64: terminating on signal 15 from pid 26324 (/nix/store/l9k0anq0z7zz81zcwy035jfwap9ga6rl-python3-3.13.13/bin/python3.13)
vm-test-run-radicle-devcontainer-ci-e2e> kill QemuMachine (pid 26333)
vm-test-run-radicle-devcontainer-ci-e2e> seed # qemu-system-x86_64: terminating on signal 15 from pid 26324 (/nix/store/l9k0anq0z7zz81zcwy035jfwap9ga6rl-python3-3.13.13/bin/python3.13)
vm-test-run-radicle-devcontainer-ci-e2e> (finished: cleanup, in 0.17 seconds)
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman exec --user 0 7fb00abd00ad00835f981473639212c963f9d85b0e94e60ba0564e22a75c5c4d chown -R 979 /workspaces/w
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman rm --force 7fb00abd00ad00835f981473639212c963f9d85b0e94e60ba0564e22a75c5c4d
7fb00abd00ad00835f981473639212c963f9d85b0e94e60ba0564e22a75c5c4d