Skip to content

{zig, zls}: add 0.16.0 versions; default to v0.16.0#509719

Open
ddogfoodd wants to merge 8 commits intoNixOS:masterfrom
ddogfoodd:update-zig
Open

{zig, zls}: add 0.16.0 versions; default to v0.16.0#509719
ddogfoodd wants to merge 8 commits intoNixOS:masterfrom
ddogfoodd:update-zig

Conversation

@ddogfoodd
Copy link
Copy Markdown
Contributor

@ddogfoodd ddogfoodd commented Apr 13, 2026

Add zig version 0.16.0 as zig_0_16.
Release Notes: https://ziglang.org/download/0.16.0/release-notes.html

Add zls version 0.16.0 as zls_0_16.
Release Notes: https://zigtools.org/zls/releases/0.16.0/
Diff: zigtools/zls@0.15.1...0.16.0

Modernize zls by using zigBuildFlags instead of linking deps in
postConfigure. When using postConfigure I couldn't build because nix didn't use the cache and couldn't fetch the deps. I looked at more recent PRs of zig packages and adapted the approach used in #500184.

Set the default version of zig to zig_0_16 and zls to zls_0_16.

Pinned zig to zig_0_15 for packages that require zig version 0.15.

Fixed the builds of odiff and river-ultitile by updating their build.zig.zon.nix files. I re-ran zon2nix to generate them. For odiff, I had to manually remove ?ref= parts from fetchgit urls and correct some hashes.

Set __structuredAttrs = true; for zig and zls.

Things done

  • Built on platform:
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • Tested, as applicable:
  • Ran nixpkgs-review on this PR. See nixpkgs-review usage.
  • Tested basic functionality of all binary files, usually in ./result/bin/.
  • Nixpkgs Release Notes
    • Package update: when the change is major or breaking.
  • NixOS Release Notes
    • Module addition: when adding a new NixOS module.
    • Module update: when the change is significant.
  • Fits CONTRIBUTING.md, pkgs/README.md, maintainers/README.md and other READMEs.

@nixpkgs-ci nixpkgs-ci bot requested a review from RossComputerGuy April 13, 2026 20:45
@nixpkgs-ci nixpkgs-ci bot added 10.rebuild-linux: 1-10 This PR causes between 1 and 10 packages to rebuild on Linux. 10.rebuild-darwin: 1-10 This PR causes between 1 and 10 packages to rebuild on Darwin. 10.rebuild-darwin: 1 This PR causes 1 package to rebuild on Darwin. 10.rebuild-linux: 1 This PR causes 1 package to rebuild on Linux. 6.topic: zig Zig is an imperative, general-purpose, statically typed, compiled system programming language. labels Apr 13, 2026
@ddogfoodd
Copy link
Copy Markdown
Contributor Author

@NixOS/nixpkgs-vet nixpkgs-vet reports:

> - Attribute `pkgs.zig_0_16` is a new package with `__structuredAttrs` unset or set to `false`.
>   Please enable `__structuredAttrs = true;` in pkgs/top-level/all-packages.nix.
>  (NPV-166)

I am not sure if that's really something I should do as I couldn't find an example in pkgs/top-level/all-packages.nix where that was done before.

Could you please take a look?

@nixpkgs-ci nixpkgs-ci bot added the 12.approvals: 1 This PR was reviewed and approved by one person. label Apr 14, 2026
Copy link
Copy Markdown
Member

@Eveeifyeve Eveeifyeve left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#509719 (comment) is a known issue that should be fixed in a followup pr. CC #205690

@nixpkgs-ci nixpkgs-ci bot added 12.approvals: 2 This PR was reviewed and approved by two persons. and removed 12.approvals: 1 This PR was reviewed and approved by one person. labels Apr 14, 2026
Copy link
Copy Markdown
Member

@RossComputerGuy RossComputerGuy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It builds, LGTM

@nixpkgs-ci nixpkgs-ci bot added 12.approvals: 3+ This PR was reviewed and approved by three or more persons. and removed 12.approvals: 2 This PR was reviewed and approved by two persons. labels Apr 14, 2026
@ddogfoodd
Copy link
Copy Markdown
Contributor Author

I would like to wait for zls_0_16 to release so we can update the default versions of zig and zls to match. If you would rather update zig default to 0.16.0 immediately, let me know.

@jcollie
Copy link
Copy Markdown
Contributor

jcollie commented Apr 14, 2026

I'd prefer that zig_0_16 is merged ASAP. Zig 0.16.1 is likely going to happen soon. zls_0_16 can be added once it's ready. Once zig_0_16 and zls_0_16 have baked for a while, then they can be made the default in unstable.

@RossComputerGuy
Copy link
Copy Markdown
Member

It'll be some time before ZLS even supports 0.16 after looking at the commits. They only recently bumped to a newer pre-release 0.16 dev version. This should be good to merge imo.

add zig version 0.16.0 as zig_0_16
@ddogfoodd
Copy link
Copy Markdown
Contributor Author

My bad, misunderstood at first.

@faukah
Copy link
Copy Markdown
Contributor

faukah commented Apr 15, 2026

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 509719
Commit: bbbf018e74b80af4a4692a4b3fca8e91bb0ed7ee


x86_64-linux

✅ 2 packages built:
  • zig_0_16
  • zig_0_16.doc

Copy link
Copy Markdown
Member

@NotAShelf NotAShelf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't wait for all of my projects to be broken

@ddogfoodd ddogfoodd marked this pull request as draft April 16, 2026 21:48
Modernize by using `zigBuildFlags` instead of linking deps in
`postConfigure`.

Add zls_0_16.
Release Notes: https://zigtools.org/zls/releases/0.16.0/
Diff: zigtools/zls@0.15.1...0.16.0
@ddogfoodd ddogfoodd changed the title zig: add zig_0_16 {zig, zls}: add 0.16.0 versions; set 0.16.0 as default Apr 16, 2026
@nixpkgs-ci nixpkgs-ci bot removed the 10.rebuild-linux: 1-10 This PR causes between 1 and 10 packages to rebuild on Linux. label Apr 16, 2026
@nixpkgs-ci nixpkgs-ci bot requested review from a team, dwt, heisfer, koibtw, ryota2357 and tonybanters April 16, 2026 23:47
@nixpkgs-ci nixpkgs-ci bot added 10.rebuild-darwin: 1-10 This PR causes between 1 and 10 packages to rebuild on Darwin. 6.topic: vim Advanced text editor and removed 10.rebuild-darwin: 11-100 This PR causes between 11 and 100 packages to rebuild on Darwin. labels Apr 16, 2026
@ddogfoodd
Copy link
Copy Markdown
Contributor Author

ddogfoodd commented Apr 16, 2026

Thank you for the review runs!

I pinned zig to zig_0_15 for packages that require 0.15.
This should fix most of the failing builds.

However, odiff and river-ultitile seem to fail due to build.zig not being found in some of their zig deps. I think that's because of the extra logic in their build.zig.zon.nix files. Not sure whether they fail because of this PR. Still, I will take a closer look.

@ddogfoodd ddogfoodd changed the title {zig, zls}: add 0.16.0 versions; set 0.16.0 as default {zig, zls}: add 0.16.0 versions; default to v0.16.0 Apr 17, 2026
@nixpkgs-ci nixpkgs-ci bot requested a review from debling April 17, 2026 00:54
Fixed the build.zig.zon.nix file by running the current version of
zon2nix on the odiff tagged build.zig.zon file.
Further, removed `?ref=` parts in fetchgit urls and corrected some
hashed.
Fix build by using the current version of zon2nix to generate the
build.zig.zon.nix
@ddogfoodd
Copy link
Copy Markdown
Contributor Author

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 509719
Commit: 03dab953629bca8c5773fda1bd2bb023754d3bd1


x86_64-linux

✅ 11 packages built:
  • cargo-zigbuild
  • odiff
  • owi
  • pkgsZig.stdenv
  • river-ultitile
  • zig (zig_0_16)
  • zig.doc (zig_0_16.doc)
  • zigStdenv
  • zls (zls_0_16)
  • zls_0_14
  • zls_0_15

@kirillrdy
Copy link
Copy Markdown
Member

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 509719
Commit: 03dab953629bca8c5773fda1bd2bb023754d3bd1


aarch64-darwin

✅ 8 packages built:
  • cargo-zigbuild
  • odiff
  • zig (zig_0_16)
  • zig.doc (zig_0_16.doc)
  • zigStdenv
  • zls (zls_0_16)
  • zls_0_14
  • zls_0_15

Copy link
Copy Markdown
Contributor

@GaetanLepage GaetanLepage left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@GaetanLepage
Copy link
Copy Markdown
Contributor

You need to enable __structuredAttrs on zig_0_16 and zls_0_16 as they are new packages.

@ddogfoodd
Copy link
Copy Markdown
Contributor Author

You need to enable __structuredAttrs on zig_0_16 and zls_0_16 as they are new packages.

I hope setting for all versions is fine too.

The message telling me to add it to pkgs/top-level/all-packages.nix put me off a bit.
I actually tried setting it in zls/default.nix and zig/generic.nix before but didn't notice I had to commit, not just stage the changes for the local nixpkgs-vet to pick up the changes.
Feeling a bit stupid because it literally told me in the first line of output.

Anyway, hope this does it now. Thank you for mentioning it again!

@nixpkgs-ci nixpkgs-ci bot requested a review from saadndm April 17, 2026 08:41
@nixpkgs-ci nixpkgs-ci bot added 10.rebuild-darwin: 11-100 This PR causes between 11 and 100 packages to rebuild on Darwin. and removed 10.rebuild-darwin: 1-10 This PR causes between 1 and 10 packages to rebuild on Darwin. labels Apr 17, 2026
@kirillrdy
Copy link
Copy Markdown
Member

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 509719
Commit: 1373ce18abcd332baa4fb43930a5cb35a95543bb


x86_64-linux

✅ 66 packages built:
  • arocc (aroccPackages.latest)
  • aroccPackages.latest-unwrapped
  • aroccStdenv
  • attyx
  • blackshades
  • bork
  • cargo-lambda
  • cargo-zigbuild
  • creek
  • dt
  • fast-cli-zig
  • findup
  • flow-control
  • ghostty
  • ghostty.man
  • ghostty.shell_integration
  • ghostty.terminfo
  • ghostty.vim
  • glsl_analyzer
  • hevi
  • linuxwave
  • lsr
  • ly
  • mepo
  • minizign
  • ncdu
  • odiff
  • outfieldr
  • owi
  • oxwm
  • pkgsArocc.stdenv
  • pkgsZig.stdenv
  • pkl-lsp
  • poop
  • river
  • river-bedload
  • river-classic
  • river-classic.man
  • river-ultitile
  • river.man
  • rivercarro
  • roc
  • superhtml
  • tuatara
  • vimPlugins.fff-nvim
  • waylock
  • wayprompt
  • zf
  • zig (zig_0_16)
  • zig-zlint
  • zig.doc (zig_0_16.doc)
  • zigStdenv
  • zig_0_13
  • zig_0_13.doc
  • zig_0_14
  • zig_0_14.doc
  • zig_0_15
  • zig_0_15.doc
  • zigfetch
  • zigimports
  • zls (zls_0_16)
  • zls_0_14
  • zls_0_15
  • zon2nix
  • zsnow
  • ztags

@GaetanLepage
Copy link
Copy Markdown
Contributor

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 509719
Commit: 1373ce18abcd332baa4fb43930a5cb35a95543bb


x86_64-linux

✅ 66 packages built:
  • arocc (aroccPackages.latest)
  • aroccPackages.latest-unwrapped
  • aroccStdenv
  • attyx
  • blackshades
  • bork
  • cargo-lambda
  • cargo-zigbuild
  • creek
  • dt
  • fast-cli-zig
  • findup
  • flow-control
  • ghostty
  • ghostty.man
  • ghostty.shell_integration
  • ghostty.terminfo
  • ghostty.vim
  • glsl_analyzer
  • hevi
  • linuxwave
  • lsr
  • ly
  • mepo
  • minizign
  • ncdu
  • odiff
  • outfieldr
  • owi
  • oxwm
  • pkgsArocc.stdenv
  • pkgsZig.stdenv
  • pkl-lsp
  • poop
  • river
  • river-bedload
  • river-classic
  • river-classic.man
  • river-ultitile
  • river.man
  • rivercarro
  • roc
  • superhtml
  • tuatara
  • vimPlugins.fff-nvim
  • waylock
  • wayprompt
  • zf
  • zig (zig_0_16)
  • zig-zlint
  • zig.doc (zig_0_16.doc)
  • zigStdenv
  • zig_0_13
  • zig_0_13.doc
  • zig_0_14
  • zig_0_14.doc
  • zig_0_15
  • zig_0_15.doc
  • zigfetch
  • zigimports
  • zls (zls_0_16)
  • zls_0_14
  • zls_0_15
  • zon2nix
  • zsnow
  • ztags

aarch64-linux

✅ 65 packages built:
  • arocc (aroccPackages.latest)
  • aroccPackages.latest-unwrapped
  • aroccStdenv
  • attyx
  • blackshades
  • bork
  • cargo-lambda
  • cargo-zigbuild
  • creek
  • dt
  • fast-cli-zig
  • findup
  • flow-control
  • ghostty
  • ghostty.man
  • ghostty.shell_integration
  • ghostty.terminfo
  • ghostty.vim
  • glsl_analyzer
  • hevi
  • linuxwave
  • lsr
  • ly
  • mepo
  • minizign
  • ncdu
  • odiff
  • outfieldr
  • owi
  • oxwm
  • pkgsArocc.stdenv
  • pkgsZig.stdenv
  • pkl-lsp
  • poop
  • river
  • river-bedload
  • river-classic
  • river-classic.man
  • river-ultitile
  • river.man
  • rivercarro
  • superhtml
  • tuatara
  • vimPlugins.fff-nvim
  • waylock
  • wayprompt
  • zf
  • zig (zig_0_16)
  • zig-zlint
  • zig.doc (zig_0_16.doc)
  • zigStdenv
  • zig_0_13
  • zig_0_13.doc
  • zig_0_14
  • zig_0_14.doc
  • zig_0_15
  • zig_0_15.doc
  • zigfetch
  • zigimports
  • zls (zls_0_16)
  • zls_0_14
  • zls_0_15
  • zon2nix
  • zsnow
  • ztags

x86_64-darwin

❌ 5 packages failed to build:
  • dt
  • flow-control
  • pkl-lsp
  • zf
  • zigfetch
✅ 35 packages built:
  • arocc (aroccPackages.latest)
  • aroccPackages.latest-unwrapped
  • aroccStdenv
  • bold
  • bork
  • cargo-lambda
  • cargo-zigbuild
  • fast-cli-zig
  • findup
  • glsl_analyzer
  • hevi
  • linuxwave
  • minizign
  • ncdu
  • odiff
  • outfieldr
  • superhtml
  • tuatara
  • vimPlugins.fff-nvim
  • zig (zig_0_16)
  • zig-zlint
  • zig.doc (zig_0_16.doc)
  • zigStdenv
  • zig_0_13
  • zig_0_13.doc
  • zig_0_14
  • zig_0_14.doc
  • zig_0_15
  • zig_0_15.doc
  • zigimports
  • zls (zls_0_16)
  • zls_0_14
  • zls_0_15
  • zon2nix
  • ztags

aarch64-darwin

❌ 6 packages failed to build:
  • dt
  • flow-control
  • pkl-lsp
  • zf
  • zig-zlint
  • zigfetch
✅ 34 packages built:
  • arocc (aroccPackages.latest)
  • aroccPackages.latest-unwrapped
  • aroccStdenv
  • bold
  • bork
  • cargo-lambda
  • cargo-zigbuild
  • fast-cli-zig
  • findup
  • glsl_analyzer
  • hevi
  • linuxwave
  • minizign
  • ncdu
  • odiff
  • outfieldr
  • superhtml
  • tuatara
  • vimPlugins.fff-nvim
  • zig (zig_0_16)
  • zig.doc (zig_0_16.doc)
  • zigStdenv
  • zig_0_13
  • zig_0_13.doc
  • zig_0_14
  • zig_0_14.doc
  • zig_0_15
  • zig_0_15.doc
  • zigimports
  • zls (zls_0_16)
  • zls_0_14
  • zls_0_15
  • zon2nix
  • ztags

Error logs: `x86_64-darwin`
dt
======== instead found this: =========
␃

======================================
First difference occurs on line 1:
expected:
233168
^ ('\x32')
found:

^ (end of string)
error: while executing test 'tokens.test.parse hello.dt', the following test command failed:
/nix/var/nix/builds/nix-33162-2892509985/source/.zig-cache/o/3ee96436b4d959993bf6451ed002ea8d/test --listen=-
Build Summary: 4/7 steps succeeded; 1 failed; 45/46 tests passed; 1 failed (disable with --summary none)
install transitive failure
+- test transitive failure
+- run test 45/46 passed, 1 failed
error: the following build command failed with exit code 1:
/nix/var/nix/builds/nix-33162-2892509985/source/.zig-cache/o/ff258713296e4562d4c29417c3a097da/build /nix/store/f97bcpxszwlj2fr348bzvs91fz01ldfi-zig-0.13.0/bin/zig /nix/var/nix/builds/nix-33162-2892509985/source /nix/var/nix/builds/nix-33162-2892509985/source/.zig-cache /nix/var/nix/builds/nix-33162-2892509985/tmp.s2RKTPO2je --seed 0x24a55158 -Z2901899a67f3fc37 -j4 -Dcpu=baseline --release=safe --verbose

flow-control
/nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig build-lib @.zig-cache/args/ac894a4ac640085bb6bcd7af82e17dcb2884d6feb0f18a783cb8c3d282ede034
/nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig build-lib @.zig-cache/args/a8b85da21b3dba75c4622864c5d2663d86c7025677381f62f341d65d2d35dc0d
cd /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM && ./../../../var/nix/builds/nix-33273-122224302/source/.zig-cache/o/8b02fff58614e407ae9bdcf6ac63c644/uucode_build_tables /nix/var/nix/builds/nix-33273-122224302/source/.zig-cache/o/6955e0680e5c6dbb0d55b0db9a4b3450/tables.zig
install
+- install flow
   +- compile exe flow ReleaseFast native-native
      +- run exe uucode_build_tables (tables.zig) failure
error: failed to spawn and capture stdio from ./../../../var/nix/builds/nix-33273-122224302/source/.zig-cache/o/8b02fff58614e407ae9bdcf6ac63c644/uucode_build_tables: FileNotFound
/nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig build-lib -cflags -DASIO_HAS_THREADS -fcolor-diagnostics -std=c++20 -Wall -Wextra -Werror -Wpedantic -Wno-deprecated-declarations -Wno-unqualified-std-cast-call -Wno-bitwise-instead-of-logical -fno-sanitize=undefined -gen-cdb-fragment-path .cache/cdb -- /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/backtrace.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/context.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/env.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/file_descriptor.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/file_stream.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/handle.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/instance.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/metronome.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/signal.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/timeout.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/trace.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/cbor.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/executor_asio.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/hub.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/instance.cpp /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/trace.cpp -OReleaseFast -target native-native -mcpu baseline -I /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src -I /nix/store/m3p5g16jiflpx0ldf40ss2vxspa98zqs-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/include -I .zig-cache/o/4a404d52b52f7984c67db822e82d67e0 -Mroot -lc++ -lc --cache-dir .zig-cache --global-cache-dir /nix/var/nix/builds/nix-33273-122224302/tmp.DS12BCzNwQ --name thespian -static --zig-lib-dir /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/lib/zig/ --listen=-
/nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig build-exe @.zig-cache/args/738050290660b9242395a1b3d0a0ea8a6cb3fc3a33cdee3e50ca89dda1f401ee
./.zig-cache/o/54aea6d5a5de78b94a9b8826f5fb4930/ts_bin_query_gen /nix/var/nix/builds/nix-33273-122224302/source/.zig-cache/o/8ffb77fd6a068377a8bae769fc4e385d/bin_queries.cbor

Build Summary: 17/21 steps succeeded; 1 failed
install transitive failure
+- install flow transitive failure
+- compile exe flow ReleaseFast native-native transitive failure
+- run exe uucode_build_tables (tables.zig) failure

error: the following build command failed with exit code 1:
.zig-cache/o/63aa3de7348ba65ef5fb1b94f4140cac/build /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/lib/zig /nix/var/nix/builds/nix-33273-122224302/source .zig-cache /nix/var/nix/builds/nix-33273-122224302/tmp.DS12BCzNwQ --seed 0xbe075e0e -Z4e31121068600d53 -j4 --system -Dcpu=baseline -Doptimize=ReleaseFast --verbose

pkl-lsp
2026-04-17T11:21:30.808+0000 [DEBUG] [org.gradle.launcher.daemon.server.DaemonRegistryUpdater] Advertised daemon context: DefaultDaemonContext[uid=bfe1a8e9-2d77-47e7-921d-3c6a7a3836be,javaHome=/nix/store/53jid9ldfgnqg7zj56hp12gabhrwzfba-zulu-ca-jdk-25.0.0/Library/Java/JavaVirtualMachines/zulu-25.jdk/Contents/Home,javaVersion=25,javaVendor=Azul Systems, Inc.,daemonRegistryDir=/nix/var/nix/builds/nix-27132-3464492763/tmp.upNUiRFegw/daemon,pid=27300,idleTimeout=120000,priority=NORMAL,applyInstrumentationAgent=true,nativeServicesMode=ENABLED,daemonOpts=-XX:MaxMetaspaceSize=384m,-XX:+HeapDumpOnOutOfMemoryError,-Xms256m,-Xmx512m,-Dfile.encoding=utf-8,-Djavax.net.ssl.trustStore=/nix/var/nix/builds/nix-27132-3464492763/tmp.QPQs691O2r/keystore,-Djavax.net.ssl.trustStorePassword=WCP46JXEHSDVEGYY,-Duser.country=DE,-Duser.language=en,-Duser.variant]
2026-04-17T11:21:30.815+0000 [DEBUG] [org.gradle.launcher.daemon.registry.PersistentDaemonRegistry] Storing daemon address: [da23350d-33c0-4c3e-afe6-f014b0f39f4a port:62078, addresses:[localhost/127.0.0.1]], context: DefaultDaemonContext[uid=bfe1a8e9-2d77-47e7-921d-3c6a7a3836be,javaHome=/nix/store/53jid9ldfgnqg7zj56hp12gabhrwzfba-zulu-ca-jdk-25.0.0/Library/Java/JavaVirtualMachines/zulu-25.jdk/Contents/Home,javaVersion=25,javaVendor=Azul Systems, Inc.,daemonRegistryDir=/nix/var/nix/builds/nix-27132-3464492763/tmp.upNUiRFegw/daemon,pid=27300,idleTimeout=120000,priority=NORMAL,applyInstrumentationAgent=true,nativeServicesMode=ENABLED,daemonOpts=-XX:MaxMetaspaceSize=384m,-XX:+HeapDumpOnOutOfMemoryError,-Xms256m,-Xmx512m,-Dfile.encoding=utf-8,-Djavax.net.ssl.trustStore=/nix/var/nix/builds/nix-27132-3464492763/tmp.QPQs691O2r/keystore,-Djavax.net.ssl.trustStorePassword=WCP46JXEHSDVEGYY,-Duser.country=DE,-Duser.language=en,-Duser.variant]
2026-04-17T11:21:30.864+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Waiting to acquire exclusive lock on daemon addresses registry.
2026-04-17T11:21:30.882+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Lock acquired on daemon addresses registry.
2026-04-17T11:21:30.893+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Releasing lock on daemon addresses registry.
2026-04-17T11:21:30.907+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Waiting to acquire exclusive lock on daemon addresses registry.
2026-04-17T11:21:30.921+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Lock acquired on daemon addresses registry.
2026-04-17T11:21:30.946+0000 [DEBUG] [org.gradle.cache.internal.DefaultFileLockManager] Releasing lock on daemon addresses registry.
2026-04-17T11:21:30.963+0000 [LIFECYCLE] [org.gradle.launcher.daemon.server.Daemon] Daemon server started.
2026-04-17T11:21:31.004+0000 [DEBUG] [org.gradle.launcher.daemon.bootstrap.DaemonStartupCommunication] Completed writing the daemon greeting. Closing streams...
2026-04-17T11:21:31.060+0000 [DEBUG] [org.gradle.launcher.daemon.server.Daemon] stopOnExpiration() called on daemon
2026-04-17T11:21:31.065+0000 [DEBUG] [org.gradle.launcher.daemon.server.Daemon] awaitExpiration() called on daemon
2026-04-17T11:21:31.068+0000 [DEBUG] [org.gradle.launcher.daemon.server.DaemonStateCoordinator] daemon is running. Sleeping until state changes.----- End of the daemon log -----
  • Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights from a Build Scan (powered by Develocity).
    > Get more help at https://help.gradle.org.
zf
Running phase: patchPhase
Running phase: configurePhase
Running phase: buildPhase
zig build flags: -j2 --system /nix/store/5c4x5w337g8gpc9hwyj6lgs2h0p2gf54-zf-cache-0.10.3-unstable-2025-10-14 -Dcpu=baseline -Doptimize=ReleaseFast
/nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig build-exe -fllvm --dep config.zig --dep build_config --dep types.zig -Mroot=/nix/store/5c4x5w337g8gpc9hwyj6lgs2h0p2gf54-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/build/tables.zig --dep types.zig -Mconfig.zig=/nix/store/5c4x5w337g8gpc9hwyj6lgs2h0p2gf54-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/config.zig --dep types.zig --dep config.zig --dep types.x.zig --dep config.x.zig -Mbuild_config=.zig-cache/o/fd18b32249ff398bc4015853405e77cf/build_config2.zig --dep config.zig -Mtypes.zig=/nix/store/5c4x5w337g8gpc9hwyj6lgs2h0p2gf54-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/types.zig --dep config.x.zig -Mtypes.x.zig=/nix/store/5c4x5w337g8gpc9hwyj6lgs2h0p2gf54-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/x/types.x.zig --dep types.x.zig --dep types.zig --dep config.zig -Mconfig.x.zig=/nix/store/5c4x5w337g8gpc9hwyj6lgs2h0p2gf54-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/x/config.x.zig --cache-dir .zig-cache --global-cache-dir /nix/var/nix/builds/nix-27223-3997286316/tmp.0D8HSaFT6H --name uucode_build_tables --zig-lib-dir /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/lib/zig/ --listen=-
cd /nix/store/5c4x5w337g8gpc9hwyj6lgs2h0p2gf54-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM && ./../../../var/nix/builds/nix-27223-3997286316/source/.zig-cache/o/cf5356b793a5752ccc4c80ca53ecc320/uucode_build_tables /nix/var/nix/builds/nix-27223-3997286316/source/.zig-cache/o/8269a25a63790cb5eb53488123323f29/tables.zig
install
+- install zf
   +- compile exe zf ReleaseFast native-native
      +- run exe uucode_build_tables (tables.zig) failure
error: failed to spawn and capture stdio from ./../../../var/nix/builds/nix-27223-3997286316/source/.zig-cache/o/cf5356b793a5752ccc4c80ca53ecc320/uucode_build_tables: FileNotFound

Build Summary: 2/6 steps succeeded; 1 failed
install transitive failure
+- install zf transitive failure
+- compile exe zf ReleaseFast native-native transitive failure
+- run exe uucode_build_tables (tables.zig) failure

error: the following build command failed with exit code 1:
.zig-cache/o/02aae0a856c82a212a570b6aa7449f25/build /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/lib/zig /nix/var/nix/builds/nix-27223-3997286316/source .zig-cache /nix/var/nix/builds/nix-27223-3997286316/tmp.0D8HSaFT6H --seed 0x1ed7998c -Zdc7ae47ac783f86a -j2 --system -Dcpu=baseline -Doptimize=ReleaseFast --verbose

zigfetch
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/v17xs9yhr59jqys4i6ix2bgb8w31pyw3-libiconv-109.100.2-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libiconv-109.100.2-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/iqpx31c3xw9ks5py102lmmn43kalg27d-libresolv-91-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libresolv-91-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/naxwx10dk5rn63b08hlni55kg2rw0j9x-libsbuf-14.1.0-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libsbuf-14.1.0-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/9kk1ld4gn52mng5dq8zyrvmqxj7hxlwv-libcxx-20.1.0+apple-sdk-26.0=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libcxx-20.1.0+apple-sdk-26.0
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/w5llw4xby1j9bf1x8hgzwxkkih9ipj2m-compiler-rt-libc-21.1.8-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-compiler-rt-libc-21.1.8-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/2ark5vpy3p7fsgmh2ai7p3c0hd9agf7n-pciutils-3.14.0=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-pciutils-3.14.0
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/v17xs9yhr59jqys4i6ix2bgb8w31pyw3-libiconv-109.100.2-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libiconv-109.100.2-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/iqpx31c3xw9ks5py102lmmn43kalg27d-libresolv-91-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libresolv-91-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/naxwx10dk5rn63b08hlni55kg2rw0j9x-libsbuf-14.1.0-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libsbuf-14.1.0-dev

error: the following command failed with 2 compilation errors:
/nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig build-exe -OReleaseSafe -target native-native -mcpu baseline -F /nix/store/4dlf3659knm8b3qh55nb05fkkzvbdqd2-apple-sdk-14.4/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -Mroot=/nix/var/nix/builds/nix-27391-3876980395/source/src/main.zig -framework CoreFoundation -framework IOKit --cache-dir .zig-cache --global-cache-dir /nix/var/nix/builds/nix-27391-3876980395/tmp.ERhjRH4dXg --name zigfetch --zig-lib-dir /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/lib/zig/ --listen=-

Build Summary: 0/3 steps succeeded; 1 failed
install transitive failure
+- install zigfetch transitive failure
+- compile exe zigfetch ReleaseSafe native-native 2 errors

error: the following build command failed with exit code 1:
.zig-cache/o/dc09180f4e609e6312836ea8a457226e/build /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/bin/zig /nix/store/sn8pz0b9hrf3kyby9rqfhh9fazssznq1-zig-0.15.2/lib/zig /nix/var/nix/builds/nix-27391-3876980395/source .zig-cache /nix/var/nix/builds/nix-27391-3876980395/tmp.ERhjRH4dXg --seed 0xb085e667 -Z1f3748591f26d303 -j2 -Dcpu=baseline --release=safe --verbose


Error logs: `aarch64-darwin`
dt
======== instead found this: =========
␃

======================================
First difference occurs on line 1:
expected:
233168
^ ('\x32')
found:

^ (end of string)
error: while executing test 'tokens.test.parse hello.dt', the following test command failed:
/nix/var/nix/builds/nix-27080-3777635409/source/.zig-cache/o/4b3867fe42d4a8b31b2e10b0f74c9fec/test --listen=-
Build Summary: 4/7 steps succeeded; 1 failed; 45/46 tests passed; 1 failed (disable with --summary none)
install transitive failure
+- test transitive failure
+- run test 45/46 passed, 1 failed
error: the following build command failed with exit code 1:
/nix/var/nix/builds/nix-27080-3777635409/source/.zig-cache/o/58937ba53b73741ea9cee84be63ad53f/build /nix/store/bykq71gwfa3gww1wjiz7rb9bmwnnmvx1-zig-0.13.0/bin/zig /nix/var/nix/builds/nix-27080-3777635409/source /nix/var/nix/builds/nix-27080-3777635409/source/.zig-cache /nix/var/nix/builds/nix-27080-3777635409/tmp.5zZa20CgXt --seed 0xe91f4481 -Zb429cfce2734f464 -j2 -Dcpu=baseline --release=safe --verbose

flow-control
/nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig build-lib @.zig-cache/args/293a8afe76e1c3caf0160d1a2b1032f7f1981be0321caeb8c10b6a4178d3c569
/nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig build-lib @.zig-cache/args/7ea1331f47b0f1f6a839d75b1b5933ee240e98c85182bbd660f7237dfd7a89e7
cd /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM && ./../../../var/nix/builds/nix-33216-791163283/source/.zig-cache/o/b893d981240b5bbf2685b92060af88a4/uucode_build_tables /nix/var/nix/builds/nix-33216-791163283/source/.zig-cache/o/32e81f0cb842fb995d90642283bde8a3/tables.zig
install
+- install flow
   +- compile exe flow ReleaseFast native-native
      +- run exe uucode_build_tables (tables.zig) failure
error: failed to spawn and capture stdio from ./../../../var/nix/builds/nix-33216-791163283/source/.zig-cache/o/b893d981240b5bbf2685b92060af88a4/uucode_build_tables: FileNotFound
/nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig build-lib -cflags -DASIO_HAS_THREADS -fcolor-diagnostics -std=c++20 -Wall -Wextra -Werror -Wpedantic -Wno-deprecated-declarations -Wno-unqualified-std-cast-call -Wno-bitwise-instead-of-logical -fno-sanitize=undefined -gen-cdb-fragment-path .cache/cdb -- /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/backtrace.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/context.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/env.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/file_descriptor.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/file_stream.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/handle.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/instance.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/metronome.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/signal.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/timeout.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/c/trace.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/cbor.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/executor_asio.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/hub.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/instance.cpp /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src/trace.cpp -OReleaseFast -target native-native -mcpu baseline -I /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/src -I /nix/store/pmbjcgizngm5ijb9inzdpr6iily4fg89-zig-packages/thespian-0.0.1-owFOjlgiBgC8w4XqkCOegxz5vMy6kNErcssWQWf2QHeE/include -I .zig-cache/o/30e8f59881e9b7f2575b0d11c08a5e20 -Mroot -lc++ -lc --cache-dir .zig-cache --global-cache-dir /nix/var/nix/builds/nix-33216-791163283/tmp.YNgOM2jwPv --name thespian -static --zig-lib-dir /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/lib/zig/ --listen=-
/nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig build-exe @.zig-cache/args/56f027a6d5b6fd7ad236d569183e469433ef14a5d7c066d5848fb3e172e7ad5b
./.zig-cache/o/0d6becd6b64472bf315c33a49d126840/ts_bin_query_gen /nix/var/nix/builds/nix-33216-791163283/source/.zig-cache/o/21594bc3cdd0670bb80eec653200ee93/bin_queries.cbor

Build Summary: 17/21 steps succeeded; 1 failed
install transitive failure
+- install flow transitive failure
+- compile exe flow ReleaseFast native-native transitive failure
+- run exe uucode_build_tables (tables.zig) failure

error: the following build command failed with exit code 1:
.zig-cache/o/a217d6e3b00497332f4db4fb9605d3be/build /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/lib/zig /nix/var/nix/builds/nix-33216-791163283/source .zig-cache /nix/var/nix/builds/nix-33216-791163283/tmp.YNgOM2jwPv --seed 0x82592197 -Z16f950d20bd3d8d5 -j4 --system -Dcpu=baseline -Doptimize=ReleaseFast --verbose

pkl-lsp
* Where:
Settings file '/nix/var/nix/builds/nix-33329-2812270157/source/settings.gradle.kts' line: 23
  • What went wrong:
    Plugin [id: 'org.gradle.toolchains.foojay-resolver-convention', version: '1.0.0'] was not found in any of the following sources:
  • Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
  • Included Builds (No included builds contain this plugin)
  • Plugin Repositories (could not resolve plugin artifact 'org.gradle.toolchains.foojay-resolver-convention:org.gradle.toolchains.foojay-resolver-convention.gradle.plugin:1.0.0')
    Searched in the following repositories:
    Gradle Central Plugin Repository
    MavenRepo
  • Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights from a Build Scan (powered by Develocity).
    > Get more help at https://help.gradle.org.

BUILD FAILED in 34s

zf
Running phase: updateAutotoolsGnuConfigScriptsPhase
Running phase: configurePhase
Running phase: buildPhase
zig build flags: -j2 --system /nix/store/m5mpp6p3l0mrb35d4qi5m509jdhsjlvl-zf-cache-0.10.3-unstable-2025-10-14 -Dcpu=baseline -Doptimize=ReleaseFast
/nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig build-exe -fllvm --dep config.zig --dep build_config --dep types.zig -Mroot=/nix/store/m5mpp6p3l0mrb35d4qi5m509jdhsjlvl-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/build/tables.zig --dep types.zig -Mconfig.zig=/nix/store/m5mpp6p3l0mrb35d4qi5m509jdhsjlvl-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/config.zig --dep types.zig --dep config.zig --dep types.x.zig --dep config.x.zig -Mbuild_config=.zig-cache/o/fd18b32249ff398bc4015853405e77cf/build_config2.zig --dep config.zig -Mtypes.zig=/nix/store/m5mpp6p3l0mrb35d4qi5m509jdhsjlvl-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/types.zig --dep config.x.zig -Mtypes.x.zig=/nix/store/m5mpp6p3l0mrb35d4qi5m509jdhsjlvl-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/x/types.x.zig --dep types.x.zig --dep types.zig --dep config.zig -Mconfig.x.zig=/nix/store/m5mpp6p3l0mrb35d4qi5m509jdhsjlvl-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM/src/x/config.x.zig --cache-dir .zig-cache --global-cache-dir /nix/var/nix/builds/nix-27155-2887263119/tmp.IhgcCIZgcv --name uucode_build_tables --zig-lib-dir /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/lib/zig/ --listen=-
cd /nix/store/m5mpp6p3l0mrb35d4qi5m509jdhsjlvl-zf-cache-0.10.3-unstable-2025-10-14/uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM && ./../../../var/nix/builds/nix-27155-2887263119/source/.zig-cache/o/3c0ba21fcabba015356a73e6cdbd28fc/uucode_build_tables /nix/var/nix/builds/nix-27155-2887263119/source/.zig-cache/o/94133ca899bfac55bdaf40f95fb4f251/tables.zig
install
+- install zf
   +- compile exe zf ReleaseFast native-native
      +- run exe uucode_build_tables (tables.zig) failure
error: failed to spawn and capture stdio from ./../../../var/nix/builds/nix-27155-2887263119/source/.zig-cache/o/3c0ba21fcabba015356a73e6cdbd28fc/uucode_build_tables: FileNotFound

Build Summary: 2/6 steps succeeded; 1 failed
install transitive failure
+- install zf transitive failure
+- compile exe zf ReleaseFast native-native transitive failure
+- run exe uucode_build_tables (tables.zig) failure

error: the following build command failed with exit code 1:
.zig-cache/o/4da59994bca5541f9004c8c9bfe5cbf7/build /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/lib/zig /nix/var/nix/builds/nix-27155-2887263119/source .zig-cache /nix/var/nix/builds/nix-27155-2887263119/tmp.IhgcCIZgcv --seed 0x30fea44e -Z6bbc91b819f35ad5 -j2 --system -Dcpu=baseline -Doptimize=ReleaseFast --verbose

zig-zlint
/nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/bin/zig test -freference-trace=256 -OReleaseSafe -target native-native -mcpu baseline --dep smart-pointers --dep chameleon --dep util --dep config --dep recover -Mroot=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/main.zig -OReleaseSafe -Msmart-pointers=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/smart_pointers-0.0.3-NPos2MOwAABoujUzLcVLofXqRAgYWLc5pG-TKDhyK0cq/src/root.zig -Mchameleon=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/chameleon-3.0.0-bqfnCfhtAAAAxXGw5t9odkb4ayCTTqOcPvL-TgSMUacF/src/chameleon.zig -OReleaseSafe -target native-native -mcpu baseline -Mutil=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/util.zig -Mconfig=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/c/39a6147a9d30c10fbb7166af01120006/options.zig -Mrecover=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/recover-1.1.0-Zd97oqomAADqISI8KEhW_UUjiPSExhw9hzeoNpg1Nveo/src/recover.zig -lc --cache-dir /nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --global-cache-dir /nix/var/nix/builds/nix-27327-1702803411/tmp.V7rJOILRA9 --name test --zig-lib-dir /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/lib/zig/ --listen=- 
/nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/bin/zig build-lib -freference-trace=256 -OReleaseSafe -target native-native -mcpu baseline --dep smart-pointers --dep chameleon --dep util --dep config -Mroot=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/root.zig -OReleaseSafe -Msmart-pointers=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/smart_pointers-0.0.3-NPos2MOwAABoujUzLcVLofXqRAgYWLc5pG-TKDhyK0cq/src/root.zig -Mchameleon=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/chameleon-3.0.0-bqfnCfhtAAAAxXGw5t9odkb4ayCTTqOcPvL-TgSMUacF/src/chameleon.zig -OReleaseSafe -target native-native -mcpu baseline -Mutil=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/util.zig -Mconfig=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/c/39a6147a9d30c10fbb7166af01120006/options.zig -femit-docs --cache-dir /nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --global-cache-dir /nix/var/nix/builds/nix-27327-1702803411/tmp.V7rJOILRA9 --name zlint -static --zig-lib-dir /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/lib/zig/ --listen=- 
/nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/bin/zig build-exe -freference-trace=256 -OReleaseSafe -target native-native -mcpu baseline --dep smart-pointers --dep chameleon --dep util --dep config -Mroot=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/main.zig -OReleaseSafe -Msmart-pointers=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/smart_pointers-0.0.3-NPos2MOwAABoujUzLcVLofXqRAgYWLc5pG-TKDhyK0cq/src/root.zig -Mchameleon=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/chameleon-3.0.0-bqfnCfhtAAAAxXGw5t9odkb4ayCTTqOcPvL-TgSMUacF/src/chameleon.zig -OReleaseSafe -target native-native -mcpu baseline -Mutil=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/util.zig -Mconfig=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/c/39a6147a9d30c10fbb7166af01120006/options.zig --cache-dir /nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --global-cache-dir /nix/var/nix/builds/nix-27327-1702803411/tmp.V7rJOILRA9 --name zlint --zig-lib-dir /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/lib/zig/ --listen=- 
/nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/bin/zig build-exe -freference-trace=256 -OReleaseSafe -target native-native -mcpu baseline --dep zlint --dep smart-pointers --dep recover -Mroot=/nix/var/nix/builds/nix-27327-1702803411/zlint/test/test_e2e.zig -OReleaseSafe -target native-native -mcpu baseline --dep smart-pointers --dep chameleon --dep util --dep config -Mzlint=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/root.zig -OReleaseSafe -Msmart-pointers=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/smart_pointers-0.0.3-NPos2MOwAABoujUzLcVLofXqRAgYWLc5pG-TKDhyK0cq/src/root.zig -Mrecover=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/recover-1.1.0-Zd97oqomAADqISI8KEhW_UUjiPSExhw9hzeoNpg1Nveo/src/recover.zig -Mchameleon=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/chameleon-3.0.0-bqfnCfhtAAAAxXGw5t9odkb4ayCTTqOcPvL-TgSMUacF/src/chameleon.zig -OReleaseSafe -target native-native -mcpu baseline -Mutil=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/util.zig -Mconfig=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/c/39a6147a9d30c10fbb7166af01120006/options.zig -lc --cache-dir /nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --global-cache-dir /nix/var/nix/builds/nix-27327-1702803411/tmp.V7rJOILRA9 --name test-e2e --zig-lib-dir /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/lib/zig/ --listen=- 
buildPhase completed in 1 minutes 22 seconds
Running phase: checkPhase
zig check flags: -j2 -Dversion=v0.7.9 --system /nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages -Dcpu=baseline --release=safe
/nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/bin/zig test -freference-trace=256 -OReleaseSafe -target native-native -mcpu baseline -Mroot=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/util.zig --cache-dir /nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --global-cache-dir /nix/var/nix/builds/nix-27327-1702803411/tmp.V7rJOILRA9 --name test-utils --zig-lib-dir /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/lib/zig/ --listen=- 
/nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/bin/zig test -freference-trace=256 -OReleaseSafe -target native-native -mcpu baseline --dep smart-pointers --dep chameleon --dep util --dep config --dep recover -Mroot=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/main.zig -OReleaseSafe -Msmart-pointers=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/smart_pointers-0.0.3-NPos2MOwAABoujUzLcVLofXqRAgYWLc5pG-TKDhyK0cq/src/root.zig -Mchameleon=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/chameleon-3.0.0-bqfnCfhtAAAAxXGw5t9odkb4ayCTTqOcPvL-TgSMUacF/src/chameleon.zig -OReleaseSafe -target native-native -mcpu baseline -Mutil=/nix/var/nix/builds/nix-27327-1702803411/zlint/src/util.zig -Mconfig=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/c/39a6147a9d30c10fbb7166af01120006/options.zig -Mrecover=/nix/store/y52zs1gz4vzfzj8inw53bv5d4dgfga16-zig-packages/recover-1.1.0-Zd97oqomAADqISI8KEhW_UUjiPSExhw9hzeoNpg1Nveo/src/recover.zig -lc --cache-dir /nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --global-cache-dir /nix/var/nix/builds/nix-27327-1702803411/tmp.V7rJOILRA9 --name test --zig-lib-dir /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/lib/zig/ --listen=- 
/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/o/5e001d834c9da6b4ccf67e2ee067e0d4/test-utils --seed=0xa408f96c --cache-dir=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --listen=- 
/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/o/3a368f1e8a3b0e099939dd89bbfb434d/test --seed=0xa408f96c --cache-dir=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --listen=- 
test
+- run test failure
error: while executing test 'cli.test.print_ast_test.decltest.print_command', the following command terminated with signal 11 (expected exited with code 0):
/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/o/3a368f1e8a3b0e099939dd89bbfb434d/test --seed=0xa408f96c --cache-dir=/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache --listen=- 
Build Summary: 4/6 steps succeeded; 1 failed; 140/140 tests passed
test transitive failure
+- run test failure
error: the following build command failed with exit code 1:
/nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache/o/02e1a9a55fd19c596bb9b525c20e02e6/build /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/bin/zig /nix/store/cj1vni1mggb6lixlmzv7h5g3b9518hgn-zig-0.14.1/lib/zig /nix/var/nix/builds/nix-27327-1702803411/zlint /nix/var/nix/builds/nix-27327-1702803411/zlint/.zig-cache /nix/var/nix/builds/nix-27327-1702803411/tmp.V7rJOILRA9 --seed 0xa408f96c -Za1f47a02717d2d2f test -j2 -Dversion=v0.7.9 --system -Dcpu=baseline --release=safe --verbose
zigfetch
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/4l8729yjln4zhnry763pklqb75dwmrd2-libiconv-109.100.2-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libiconv-109.100.2-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/d6dh7sdypw64lf74iv0gwgphvs1dq3fa-libresolv-91-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libresolv-91-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/ykwz6395vf4gn185zfvkx30avzmap11y-libsbuf-14.1.0-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libsbuf-14.1.0-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/gas29mwgqh0i3d4083ygl9b65sll1yil-libcxx-20.1.0+apple-sdk-26.0=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libcxx-20.1.0+apple-sdk-26.0
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/pnazzar06qzgcbsln5shjnmrq0krryww-compiler-rt-libc-21.1.8-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-compiler-rt-libc-21.1.8-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/hqg34yh4m8znr9938fca52z03wgnd9ll-pciutils-3.14.0=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-pciutils-3.14.0
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/4l8729yjln4zhnry763pklqb75dwmrd2-libiconv-109.100.2-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libiconv-109.100.2-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/d6dh7sdypw64lf74iv0gwgphvs1dq3fa-libresolv-91-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libresolv-91-dev
warning: Unrecognized C flag from NIX_CFLAGS_COMPILE: -fmacro-prefix-map=/nix/store/ykwz6395vf4gn185zfvkx30avzmap11y-libsbuf-14.1.0-dev=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-libsbuf-14.1.0-dev

error: the following command failed with 2 compilation errors:
/nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig build-exe -OReleaseSafe -target native-native -mcpu baseline -F /nix/store/q2dccg26bm7bn6ia1q30qkl5jck7wwgb-apple-sdk-14.4/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks -Mroot=/nix/var/nix/builds/nix-27571-4060825047/source/src/main.zig -framework CoreFoundation -framework IOKit --cache-dir .zig-cache --global-cache-dir /nix/var/nix/builds/nix-27571-4060825047/tmp.9yKjBCx7QX --name zigfetch --zig-lib-dir /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/lib/zig/ --listen=-

Build Summary: 0/3 steps succeeded; 1 failed
install transitive failure
+- install zigfetch transitive failure
+- compile exe zigfetch ReleaseSafe native-native 2 errors

error: the following build command failed with exit code 1:
.zig-cache/o/3db9ea34024e6b635b17c24037776487/build /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/bin/zig /nix/store/pgs5gkjsmqrkpzzl5wqfmcg6s03f4mdn-zig-0.15.2/lib/zig /nix/var/nix/builds/nix-27571-4060825047/source .zig-cache /nix/var/nix/builds/nix-27571-4060825047/tmp.9yKjBCx7QX --seed 0xec252ab8 -Za74cbc5e369bfcb7 -j2 -Dcpu=baseline --release=safe --verbose

@ddogfoodd
Copy link
Copy Markdown
Contributor Author

Unfortunately I don't have darwin machines. It's hard for me to fix without testing, so feel free to request some changes if anyone got the time and means to fix the remaining failed builds.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

6.topic: vim Advanced text editor 6.topic: zig Zig is an imperative, general-purpose, statically typed, compiled system programming language. 10.rebuild-darwin: 11-100 This PR causes between 11 and 100 packages to rebuild on Darwin. 10.rebuild-linux: 11-100 This PR causes between 11 and 100 packages to rebuild on Linux. 12.approvals: 3+ This PR was reviewed and approved by three or more persons. 12.approved-by: package-maintainer This PR was reviewed and approved by a maintainer listed in any of the changed packages.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants