Skip to content

lib: remux and tag DASH (m4a) downloads - #176

Merged
Inrixia merged 3 commits into
Inrixia:masterfrom
np3ir:feat/tag-dash-downloads
Jul 14, 2026
Merged

lib: remux and tag DASH (m4a) downloads#176
Inrixia merged 3 commits into
Inrixia:masterfrom
np3ir:feat/tag-dash-downloads

Conversation

@np3ir

@np3ir np3ir commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

Follow-up to Inrixia/luna-plugins#239, integrating the functionality into the Luna lib as requested — this time validated end to end.

Problem

FLAC downloads are tagged in-flight by the FlacStreamTagger, but DASH downloads are written to disk as a raw concatenation of the CMAF segments: a fragmented MP4 with no metadata. Fragmented MP4s can't be tagged by common taggers (node-taglib-sharp crashes on them) and some players/DJ software handle them poorly.

Change

After a DASH download finishes, MediaItem.download.native.ts now calls a new finalizeDashDownload() which:

  1. Remuxes the file into a standard progressive MP4 using mediabunny — packets are copied bit-identical, no re-encode.
  2. Replicates the source's edit list (AAC encoder delay) in the output and adjusts mvhd/tkhd to the trimmed presentation duration, so decoded audio stays sample-identical to the stream (mediabunny alone drops the elst).
  3. Writes an empty udta/meta/ilst skeleton — node-taglib-sharp (<= 6.0.3) crashes saving MP4s that have no Apple ilst box (Mpeg4File.save dereferences an empty IsoUserDataBox's parentTree).
  4. Writes the tags makeTags already builds (title, artists, album, dates, cover art, ISRC, MusicBrainz ids, etc.) with node-taglib-sharp.

Both dependencies are pure JS — no ffmpeg, no native binaries. The remux writes to a .tmp and renames on success, so a failure never loses the raw download. The FLAC path is untouched.

Validation

Offline, against real TIDAL DASH downloads (AAC 320):

  • Compressed packet MD5 identical to the raw download (ffmpeg -c copy -f hash).
  • Decoded PCM MD5 identical to the source stream, and first packet pts / duration match an ffmpeg -c copy reference remux (encoder delay preserved, gapless intact).
  • Tags + cover verified readable by ffprobe/taggers after write.

Live, in the client with the SongDownloader plugin set to High quality: downloads come out as standard isom/mp41 files with full tags and embedded 1280x1280 cover art.

Generated with Claude Code

FLAC downloads are tagged in-flight by the FlacStreamTagger, but DASH
downloads are written to disk as a raw concatenation of the CMAF
segments: a fragmented MP4 with no tags, which most taggers and some
players cannot handle.

After a DASH download finishes, remux it into a standard progressive
MP4 using mediabunny (packets are copied bit-identical, no re-encode)
and write the same tags makeTags already builds (title, artists, album,
cover art, etc.) with node-taglib-sharp. Both are pure JS, no ffmpeg or
native binaries.

The remux preserves the AAC encoder delay: the source edit list is
replicated in the output (media_time + presentation duration), so the
decoded audio stays sample-identical to the original stream. An empty
udta/meta/ilst skeleton is also written because node-taglib-sharp
crashes saving MP4 files that have no Apple ilst box.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@Inrixia

Inrixia commented Jul 14, 2026

Copy link
Copy Markdown
Owner

Does finalizeDash need so many helpers, could it rely on another lib?

And could you please post two mediainfo dumps of two different tracks showing the Metadata embed?

Thanks

@np3ir

np3ir commented Jul 14, 2026

Copy link
Copy Markdown
Contributor Author

Does finalizeDash need so many helpers, could it rely on another lib?

The remux itself is fully delegated to mediabunny. The helpers only cover two things no current JS library does:

  1. Writing the edit list. TIDAL's DASH streams carry the AAC encoder delay in an elst with media_time > 0 (typically 2048 samples). mediabunny reads it, but its muxer can only write edit lists for positive start offsets (track delay), so the encoder delay is dropped on conversion — the output plays 2048 samples of priming and gapless/sample alignment breaks. The helpers replicate the source elst in the output (plus the mvhd/tkhd duration trim and the stco shift that insertion causes). I verified the result decodes PCM-identical (MD5) to the raw stream, matching an ffmpeg -c copy reference.
  2. The empty udta/meta/ilst skeleton. node-taglib-sharp (up to 6.0.3) crashes in Mpeg4File.save() on any MP4 that has no Apple ilst box yet (IsoUserDataBox.fromEmpty() leaves parentTree undefined and it's dereferenced before the empty-tree branch). Freshly muxed files have no ilst, so without the skeleton every save throws.

Alternatives I considered: mp4box.js can parse but can't write this either and is a much heavier dependency; ffmpeg is a binary. Both issues are upstreamable (an elst passthrough option for mediabunny, the parentTree crash fix for node-taglib-sharp) — happy to file those, and this module shrinks as they land. It's ~150 lines of self-contained box math with no extra dependencies in the meantime.

And could you please post two mediainfo dumps of two different tracks showing the Metadata embed?

Both downloaded in-client with SongDownloader (quality Low = AAC 320 → DASH), tagged by this PR's code path (lyrics tag embedded too, contents omitted from the dumps):

mediainfo — Track 1 (Si Yo Fuera)
General
Complete name                            : 1. Ricardo Arjona - Si Yo Fuera{explicit}.m4a
Format                                   : MPEG-4
Format profile                           : Base Media
Codec ID                                 : isom (isom/mp41)
File size                                : 10.5 MiB
Duration                                 : 4 min 28 s
Overall bit rate mode                    : Variable
Overall bit rate                         : 328 kb/s
Title                                    : Si Yo Fuera
Album                                    : Historias
Album/Performer                          : Ricardo Arjona
Part/Position                            : 1
Track name/Position                      : 1
Track name/Total                         : 14
Performer                                : Ricardo Arjona
Recorded date                            : 1993
Encoded date                             : 2026-07-14 01:03:32 UTC
Tagged date                              : 2026-07-14 01:03:32 UTC
Cover                                    : Yes
Cover type                               : Cover
Lyrics                                   : (synced lyrics embedded - omitted here)
Comment                                  : https://tidal.com/browse/track/4956045

Audio
ID                                       : 1
Format                                   : AAC LC
Format/Info                              : Advanced Audio Codec Low Complexity
Codec ID                                 : mp4a-40-2
Duration                                 : 4 min 28 s
Source duration                          : 4 min 28 s
Source_Duration_LastFrame                : -4 ms
Bit rate mode                            : Variable
Bit rate                                 : 320 kb/s
Channel(s)                               : 2 channels
Channel layout                           : L R
Sampling rate                            : 44.1 kHz
Frame rate                               : 43.066 FPS (1024 SPF)
Compression mode                         : Lossy
Stream size                              : 10.3 MiB (98%)
Source stream size                       : 10.3 MiB (98%)
Default                                  : Yes
Alternate group                          : 1
Encoded date                             : 2026-07-14 01:03:32 UTC
Tagged date                              : 2026-07-14 01:03:32 UTC

Image
Type                                     : Cover
Format                                   : JPEG
Muxing mode                              : moov-meta-covr
Width                                    : 1 280 pixels
Height                                   : 1 280 pixels
Color space                              : YUV
Chroma subsampling                       : 4:4:4
Bit depth                                : 8 bits
Compression mode                         : Lossy
Stream size                              : 200 KiB (2%)
mediainfo — Track 4 (Historia de Taxi)
General
Complete name                            : 4. Ricardo Arjona - Historia de Taxi{explicit}.m4a
Format                                   : MPEG-4
Format profile                           : Base Media
Codec ID                                 : isom (isom/mp41)
File size                                : 15.7 MiB
Duration                                 : 6 min 45 s
Overall bit rate mode                    : Variable
Overall bit rate                         : 326 kb/s
Title                                    : Historia de Taxi
Album                                    : Historias
Album/Performer                          : Ricardo Arjona
Part/Position                            : 1
Track name/Position                      : 4
Track name/Total                         : 14
Performer                                : Ricardo Arjona
Recorded date                            : 1993
Encoded date                             : 2026-07-14 01:04:44 UTC
Tagged date                              : 2026-07-14 01:04:44 UTC
Cover                                    : Yes
Cover type                               : Cover
Lyrics                                   : (synced lyrics embedded - omitted here)
Comment                                  : https://tidal.com/browse/track/4956048

Audio
ID                                       : 1
Format                                   : AAC LC
Format/Info                              : Advanced Audio Codec Low Complexity
Codec ID                                 : mp4a-40-2
Duration                                 : 6 min 45 s
Source duration                          : 6 min 45 s
Source_Duration_LastFrame                : -22 ms
Bit rate mode                            : Variable
Bit rate                                 : 320 kb/s
Channel(s)                               : 2 channels
Channel layout                           : L R
Sampling rate                            : 44.1 kHz
Frame rate                               : 43.066 FPS (1024 SPF)
Compression mode                         : Lossy
Stream size                              : 15.5 MiB (98%)
Source stream size                       : 15.5 MiB (98%)
Default                                  : Yes
Alternate group                          : 1
Encoded date                             : 2026-07-14 01:04:44 UTC
Tagged date                              : 2026-07-14 01:04:44 UTC

Image
Type                                     : Cover
Format                                   : JPEG
Muxing mode                              : moov-meta-covr
Width                                    : 1 280 pixels
Height                                   : 1 280 pixels
Color space                              : YUV
Chroma subsampling                       : 4:4:4
Bit depth                                : 8 bits
Compression mode                         : Lossy
Stream size                              : 200 KiB (1%)

@Inrixia

Inrixia commented Jul 14, 2026

Copy link
Copy Markdown
Owner

LGTM could you please bump patch version, I'll then merge

@np3ir

np3ir commented Jul 14, 2026

Copy link
Copy Markdown
Contributor Author

Done - bumped to 1.14.2-beta.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@Inrixia

Inrixia commented Jul 14, 2026

Copy link
Copy Markdown
Owner

Oops, sorry I meant minor version not patch version. Bump minor and I'll merge thx

@np3ir

np3ir commented Jul 14, 2026

Copy link
Copy Markdown
Contributor Author

Done - 1.15.0-beta.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@Inrixia
Inrixia merged commit 3fbee3d into Inrixia:master Jul 14, 2026
1 of 3 checks passed
@github-actions

Copy link
Copy Markdown

Flake Review Results for #176

Available systems: aarch64-darwin, aarch64-linux, armv6l-linux, armv7l-linux, i686-linux, powerpc64le-linux, riscv64-linux, x86_64-darwin, x86_64-freebsd, x86_64-linux
Requested systems: aarch64-darwin, x86_64-linux

🔄 Modified (2)

  • packages.aarch64-darwin.default (build failed)

    Build error
    these 4 derivations will be built:
      /nix/store/7ws6wdkcw14zap7aw9cafr11h4qn341b-TIDAL.arm64.dmg.drv
      /nix/store/xvdid7cv5whi7cvr0r2p8486agb5ndg1-TidaLuna-pnpm-deps.drv
      /nix/store/f5ffnf242kdsr2g8bn2pnspgc68fw0n1-TidaLuna-1.15.0-beta.drv
      /nix/store/8ic5mpwgj65w1ifc01s7k1d9gjllrk8d-tidal-2.41.3.drv
    these 146 paths will be fetched (239.5 MiB download, 1.6 GiB unpacked):
      /nix/store/jf12xr43wyijvi9gfccaia2ykzxvwzd7-ada-3.4.4
      /nix/store/rcqgjj8hphkhqark1ibiwfaa7yrzniz3-apple-sdk-14.4
      /nix/store/f700nj7wlwg441h39gkq29qbviy99sgq-bash-5.3p9
      /nix/store/in4yc03diyvs2n2wgf3nva4hbvml8v1j-bash-interactive-5.3p9
      /nix/store/bkxns48j371lfzz4x1qxga8dhkxi7q0w-brotli-1.2.0
      /nix/store/3iqwdhl9i5kda00bs1jy44c3pn0gb819-brotli-1.2.0-dev
      /nix/store/72n4crp92493ly5mls0dy1bcd3y36wpz-brotli-1.2.0-lib
      /nix/store/fs3gyn653jb6b6bsyj50vg20m2a6gbr2-bzip2-1.0.8
      /nix/store/nk06qsgv7l6lpdp7p6jik8lrcrd8dk6b-bzip2-1.0.8-bin
      /nix/store/fh0y5ay9yc3hcd075fxl37f9w7gjncb5-c-ares-1.34.6
      /nix/store/jxscl5ryjvp5cyn03ankfgsw5xxl1vnx-c-ares-1.34.6
      /nix/store/yav6rvqfv8g7ri37h3rpsgnkc5nlcj25-c-ares-1.34.6-dev
      /nix/store/ai7grnfyqy6la6mpccca1v4n7nvn9lni-cctools-1010.6
      /nix/store/vxyn96grm90prz8pb116hxkywh01dlz7-cctools-1010.6-libtool
      /nix/store/h5zqjfvkcqdrh9mnnl9dql9fj1zawmsj-cctools-binutils-darwin-1010.6
      /nix/store/xhglqa4ap2w8b9hinzmyw9jdbnn6h7k7-cctools-binutils-darwin-wrapper-1010.6
      /nix/store/q87hv65x5q7fclsshw34i7i1nky8ml7x-clang-21.1.8
      /nix/store/s8dm60kfi55qlwk1j1whp0jj7j11s29d-clang-21.1.8-lib
      /nix/store/rwsbw420hcq148hifv7fga6r4g0k1dw8-clang-wrapper-21.1.8
      /nix/store/3ph0blg14d19bwrkwv0m39msv18fd4kq-compiler-rt-libc-21.1.8
      /nix/store/k4wwcnx04jppw5zc64s88h9b6f84pkwx-compiler-rt-libc-21.1.8-dev
      /nix/store/nixxlz2dfdwmy6r8da5sas4nrnj7sq3z-coreutils-9.10
      /nix/store/99l38xa4c2jm5vhb1dixckmw12n2fa02-cups-headers-2.4.16
      /nix/store/g1fi8csmcbyr4z02697ihsxs6b6qyb4f-curl-8.19.0
      /nix/store/3d4bd7hg13jgr57gm34k07zhl3ivzgg5-curl-8.19.0-bin
      /nix/store/mgqs7w63j72c74nycbnrajpxmhrlxm1j-curl-8.19.0-dev
      /nix/store/nz34kp7nya22bi9zwvzc2lgkyvzjl1yl-curl-8.19.0-man
      /nix/store/ckx0pqn935algz20fpw2h588xr012mnh-diffutils-3.12
      /nix/store/17l3iqh7slhijhsbh9a9bzmf0a37iggd-ed-1.22.5
      /nix/store/f12nfngxw3a864g4h30sfiyspwmqqn0f-expand-response-params
      /nix/store/rmklpijj6nxlswblm3zxf2y38mvc8qph-expat-2.7.5
      /nix/store/wnbngm46r31nfwihyvi0q2qp5pz0saya-file-5.45
      /nix/store/n97958y53ykgb2zlwa0sgq7crgi9lrgh-findutils-4.10.0
      /nix/store/2yp79k76hcqpwprz6lmxdyd63hpzbkch-gawk-5.4.0
      /nix/store/px11jaajmw12xcqwfmgdz45f569l3hbk-gdbm-1.26-lib
      /nix/store/y232hw0pamh3zsmjf8ilfyq2ichnzv6q-gettext-1.0
      /nix/store/hk9kjbpqsddc5b1iidjf8rlb196jhcvm-gmp-with-cxx-6.3.0
      /nix/store/gqsik32r8250l7jy15zhmlm20rlb01kj-gnu-config-2024-01-01
      /nix/store/sk1la8r8sa1rlb8m9kwy5hi29f58sjd9-gnugrep-3.12
      /nix/store/zcbp7z3zaagbm7rpk6hz5zb8qwd40v42-gnumake-4.4.1
      /nix/store/k6894r7p4545j4sbsyq698pqjwa8vfkh-gnused-4.9
      /nix/store/z5c2rlpy5g8jgyz1l5ngf23ks3li9i10-gnutar-1.35
      /nix/store/g2ah5nmzbccw98m7q3v6xm839yhbp91x-gzip-1.14
      /nix/store/kpwwrk0mfs3m8xmsk22qgnn8p9yfh88y-icu4c-76.1
      /nix/store/w556nwah845yxg9k43ir930h9psxkp1s-icu4c-76.1-dev
      /nix/store/inmyqx7646xrcqrwxipacv5gkf3ca6m3-jq-1.8.1
      /nix/store/zpaiv3csv85i5qdhwlivlbg8a5clnqmh-jq-1.8.1-bin
      /nix/store/h46rnp90pvk5ky12r9drbzhl1fqlmjnf-jq-1.8.1-dev
      /nix/store/dm32is4padx7wrpc47zp2p2rplp11zyk-ld64-954.16
      /nix/store/knnjn1glll5srmw3vsz2iy5lc88j06pk-ld64-954.16-lib
      /nix/store/jz1ih170dg8k85vn3b0r9vbi0zv1dv79-libSystem-B
      /nix/store/15fc6b3pbi1rq7lpwrbyic8qzlqqkvw0-libcxx-20.1.0+apple-sdk-26.0
      /nix/store/nzqbvsaqd7zgxd26xl7nvabjn1d5ks9k-libev-4.33
      /nix/store/x23jq8vm649pchhxdsdhyrwiqpa9q2ig-libffi-40
      /nix/store/xvmhkpvfvmy4sfdkqwg9inq3qkpnx81b-libiconv-109.100.2
      /nix/store/3bg9vly81n5485kk4fax49qrjglnl87n-libiconv-109.100.2-dev
      /nix/store/saq1lz2nzryx8p9hvl72yws5hb137wwh-libresolv-91
      /nix/store/7nw1h3riz3zp54kl68wixdz5h1npshr3-libresolv-91-dev
      /nix/store/2ynaxndxff0xj75iq38f5fibbkr2z4jf-libsbuf-14.1.0
      /nix/store/p1gy09nkzy2jmzh2rbpm0nnmzgsnf613-libsbuf-14.1.0-dev
      /nix/store/igdpskkz4nfyyl6ax3dv97rhvfpnblg0-libssh2-1.11.1
      /nix/store/vqa3r3prviaw6jjh566991wbfgzqbp2i-libssh2-1.11.1-dev
      /nix/store/m6sa2abyrx4alvwdvi1plc3kdhnv2g1x-libutil-72
      /nix/store/5x8w6xxa0lmjwa14mkfimi3k9mjb30b9-libuv-1.52.1
      /nix/store/0hb9yxy0z6q65yykg9l38d5fq5y3q4sg-libuv-1.52.1-dev
      /nix/store/4c9ssafk14djl647676cqv5672s45fjk-libxcrypt-4.5.2
      /nix/store/1ij1f33zqwsbhrkpag7d0yz04p64m2fl-libxml2-2.15.1
      /nix/store/xya4zy2f463yfzipmxvy2pxm5b1gw0m4-libyaml-0.2.5
      /nix/store/jkczrvalwz64jcmacn4985x28b9brcxi-llhttp-9.3.1
      /nix/store/5b95cq9m6pdbx2spiyxhnrvgvfy5cbrl-llhttp-9.3.1-dev
      /nix/store/zbblxnd78j10s7gv8d2g8msvjiamrl88-llvm-21.1.8
      /nix/store/nai3i6m2ngp44n2ysgd4fri6mi6kl18n-llvm-21.1.8-lib
      /nix/store/i6x6cl8bwyfqsib80sj6madya995w4vm-locale-118
      /nix/store/4qbg9mlpkjbyhl8lwjpmi2ai433cq79q-lzfse-1.0
      /nix/store/a4x6m2d4fsizxxz1gd9q0y05bagx1y28-mailcap-2.1.54
      /nix/store/mrrwsfr95ckx8jnj0bk73x8wmsa81hkn-mirrors-list
      /nix/store/r0b2dc6b101wrpsyy4rg95dbxqqh6mdw-moreutils-0.70
      /nix/store/ks543mv8xcrp4331dd221nndkiix4fyy-mpdecimal-4.0.1
      /nix/store/8ya1xxf60qvzwa6cqajr8pzg1hqnvxcz-ncurses-6.6
      /nix/store/3zvdi4qy608m82538zp565f57z3lgp0c-ncurses-6.6-dev
      /nix/store/bdww2r0dpr1f32kqd7vcylymlqg9dsi0-ncurses-6.6-man
      /nix/store/35l3zp5d8g7l26lkpc3y7vs5izbh78mq-nghttp2-1.68.1
      /nix/store/hk4zj7fx4ws35ywr8581iq72609wma0f-nghttp2-1.68.1
      /nix/store/0n7v22a9dzn1cgpww2axxw90xj04mx05-nghttp2-1.68.1-dev
      /nix/store/kygaslsk90sqmkz9awmxp8j6gmjnpmr8-nghttp2-1.68.1-dev
      /nix/store/yhm2fpmgfk0h32anaz0yq56csdsy3kix-nghttp2-1.68.1-lib
      /nix/store/yrvc4kjxd7b7bzf9jhlrmdjngsqqipr4-nghttp2-1.68.1-lib
      /nix/store/07wq5fj5ikj43il3dmghj4a39698i7cm-nghttp3-1.15.0
      /nix/store/cy3bnqbihbmxhdzzhsd4kj948lmd67lw-nghttp3-1.15.0-dev
      /nix/store/ii7qn8f9jm7iqiv196nss9z1a0zml74z-ngtcp2-1.22.0
      /nix/store/xy0rdnrwvip9wsaigwrczkc13jwzn3vq-ngtcp2-1.22.0-dev
      /nix/store/sf85v1qd1glkmsyfxwn9p8wridb4qf6y-nodejs-24.14.1
      /nix/store/va22g750kafjvkbwvhbnwqqmj9f9dm8m-nodejs-slim-24.14.1
      /nix/store/gb381bva0307p4wxgliwjg1vqirhy9za-nodejs-slim-24.14.1-corepack
      /nix/store/ijdwpfrb1z2maxwji7f8kjrkdl75ra3q-nodejs-slim-24.14.1-npm
      /nix/store/d91fc02w6qyw9rn1a3rkfh2as76iyjj2-nss-cacert-3.121
      /nix/store/i81w8pkb9pyz7d30x1m4x7q8fj5f027q-oniguruma-6.9.10-lib
      /nix/store/4z5dlhn7668rnmab00343i9hqj0q9vz0-openssl-3.6.1
      /nix/store/ykkcc3jfp3hhxgvvgji9bkrl174ynldj-openssl-3.6.1
      /nix/store/hx6q7n0nkahf43y6q9wgiglwzc8v9s50-openssl-3.6.1-bin
      /nix/store/vg7h22kw194gm7ghyjwj28lfm45861xl-openssl-3.6.1-bin
      /nix/store/qhjqdgg7ddcyaj6kxjfp5cwa4wdd6mf9-openssl-3.6.1-dev
      /nix/store/w2zd8g8k3nqp1lg5niwdxnj06p9sdbi9-openssl-3.6.1-dev
      /nix/store/pw3sxm8d1kw64gfvk4vy7ww6ykyg9l4r-patch-2.8
      /nix/store/7rq9a5vn4v9lsih3hyk2vlkbb5kw4jw3-pcre2-10.46
      /nix/store/a04sbmij2ba455slf378x7n2h3p8zn7d-perl-5.42.0
      /nix/store/86y4832if8pxlw069mmflik0lxgfy06v-perl-5.42.0-env
      /nix/store/0rpdd9iviwbc6dwjszvx41d7iy1zc068-perl-5.42.0-man
      /nix/store/6i8xisb50w8q3bysbk955s7dp595cm8b-perl5.42.0-IO-Tty-1.20
      /nix/store/4qh7cfhq3casa8z3304yfvfj1zr1jlzc-perl5.42.0-IPC-Run-20231003.0
      /nix/store/bfwccvay4774bmzphxkdnbizky5picfj-perl5.42.0-Time-Duration-1.21
      /nix/store/ml01fnfi8qglmplzxj8hhskmbvkv63h9-perl5.42.0-TimeDate-2.33
      /nix/store/m1y1qai447mysk42lrs86iaf1l57p117-pnpm-10.33.4
      /nix/store/ja1mrzdf4kkq6lcybhgf0y1bdi4pbnig-pnpm-config-hook
      /nix/store/kwnbzccaiqi6iwdchcy6xc8br4x9hn0j-python3-3.13.12
      /nix/store/lg2in84afvpm35jy062xpak34m6fd36y-python3.13-argcomplete-3.6.3
      /nix/store/2hipkj74d1jkh5y0fl0zq3w50b0mq39c-python3.13-pyyaml-6.0.3
      /nix/store/xp2q0rwirj7159j4kcywi15d8xi6g507-python3.13-tomlkit-0.14.0
      /nix/store/39b3zhqj11dnylxf36kdxm6v8nl3i1y8-python3.13-xmltodict-1.0.2
      /nix/store/gfj0swayhqm02nidsvh6692gp0kk23g0-python3.13-yq-3.4.3
      /nix/store/j6knvs68pczkklkdvgahlc0c679jya3y-readline-8.3p3
      /nix/store/3p2hqrbziwwsni9si2mq6npdfp4g9b20-simdjson-4.6.0
      /nix/store/na75idbj3fvjvm1crgsm7wdinlf04rv4-simdutf-6.5.0
      /nix/store/mnan732zcw3z1b4zz7zciscidy49a49p-simdutf-8.1.0
      /nix/store/pd3zpzir56yy600l1iy500y7lw03pcjw-sqlite-3.51.2
      /nix/store/xxj9aq7qqd4qxckpffagr09w3q9vdg6b-sqlite-3.51.2-bin
      /nix/store/qq40rzigdlnxxznlhpwcjvsh94kaj88p-sqlite-3.51.2-dev
      /nix/store/5qpb391n5rpgdi95j6sczjsplkkgw2v1-stdenv-darwin
      /nix/store/77hqf10iix9cvrrgkczdridxhb2p0gk6-stdenv-darwin
      /nix/store/v71w9q1n9gx7qv65xh8d2j4dlxbck0w4-tzdata-2026a
      /nix/store/q61ydp78wcs21i3aji0pc3xwa78xvd8d-undmg-1.1.0-unstable-2024-08-02
      /nix/store/rdjaknqab5zx16x89vlzp9sxdzpl700x-update-autotools-gnu-config-scripts-hook
      /nix/store/3z6x73b1843b5dwhg5adx889vgq5yrxw-uvwasi-0.0.23
      /nix/store/1yxb5ybmg3367vnlsqayb77ydyjz9viy-writable-tmpdir-as-home-hook
      /nix/store/p7l727b8br6hr1y7m91rl6v9bjbnyhvg-xar-minimal-501-lib
      /nix/store/5bygd1lg0k4df3pkwz9absccd3hkwpd8-xcbuild-0.1.1-unstable-2019-11-20
      /nix/store/892nvs8jsym28198pvmxd9mnf204j3c9-xcbuild-0.1.1-unstable-2019-11-20-xcrun
      /nix/store/w4pi5ia5drldsbg2m4f1clnali91j82n-xz-5.8.3
      /nix/store/fcnaawh32d0s9kg4h74kqxai3lhwhnfp-xz-5.8.3-bin
      /nix/store/5xsgmqydvmfj1cafcv32pyf2mvm0ix89-zlib-1.3.2
      /nix/store/lmlcw90nfq3s46p3yzgi7rp33zk24m4r-zlib-1.3.2
      /nix/store/70mlrvqbsfkh41y2vwdqz6z5y357g2as-zlib-1.3.2-dev
      /nix/store/0q24810a42m8kn1n01i49w451g4rxzjb-zlib-1.3.2-static
      /nix/store/ff0aj2pp85sl42xvb2w59ynbk1330ygp-zstd-1.5.7
      /nix/store/3q6jdxwx59zhdjvgixqj3w65lgccrs2s-zstd-1.5.7-bin
      /nix/store/wyxql7maladsv5hhizxj5smkapnsnhk2-zstd-1.5.7-dev
    copying path '/nix/store/f700nj7wlwg441h39gkq29qbviy99sgq-bash-5.3p9' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/fs3gyn653jb6b6bsyj50vg20m2a6gbr2-bzip2-1.0.8' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/k6894r7p4545j4sbsyq698pqjwa8vfkh-gnused-4.9' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/2yp79k76hcqpwprz6lmxdyd63hpzbkch-gawk-5.4.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/i6x6cl8bwyfqsib80sj6madya995w4vm-locale-118' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/4qbg9mlpkjbyhl8lwjpmi2ai433cq79q-lzfse-1.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/w4pi5ia5drldsbg2m4f1clnali91j82n-xz-5.8.3' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/lmlcw90nfq3s46p3yzgi7rp33zk24m4r-zlib-1.3.2' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/99l38xa4c2jm5vhb1dixckmw12n2fa02-cups-headers-2.4.16' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3ph0blg14d19bwrkwv0m39msv18fd4kq-compiler-rt-libc-21.1.8' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/f12nfngxw3a864g4h30sfiyspwmqqn0f-expand-response-params' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/jz1ih170dg8k85vn3b0r9vbi0zv1dv79-libSystem-B' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/15fc6b3pbi1rq7lpwrbyic8qzlqqkvw0-libcxx-20.1.0+apple-sdk-26.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/hk9kjbpqsddc5b1iidjf8rlb196jhcvm-gmp-with-cxx-6.3.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/xvmhkpvfvmy4sfdkqwg9inq3qkpnx81b-libiconv-109.100.2' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/m6sa2abyrx4alvwdvi1plc3kdhnv2g1x-libutil-72' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/72n4crp92493ly5mls0dy1bcd3y36wpz-brotli-1.2.0-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/fh0y5ay9yc3hcd075fxl37f9w7gjncb5-c-ares-1.34.6' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/nz34kp7nya22bi9zwvzc2lgkyvzjl1yl-curl-8.19.0-man' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/nk06qsgv7l6lpdp7p6jik8lrcrd8dk6b-bzip2-1.0.8-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/nzqbvsaqd7zgxd26xl7nvabjn1d5ks9k-libev-4.33' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/x23jq8vm649pchhxdsdhyrwiqpa9q2ig-libffi-40' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/px11jaajmw12xcqwfmgdz45f569l3hbk-gdbm-1.26-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/kpwwrk0mfs3m8xmsk22qgnn8p9yfh88y-icu4c-76.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/rmklpijj6nxlswblm3zxf2y38mvc8qph-expat-2.7.5' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/saq1lz2nzryx8p9hvl72yws5hb137wwh-libresolv-91' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/nixxlz2dfdwmy6r8da5sas4nrnj7sq3z-coreutils-9.10' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/2ynaxndxff0xj75iq38f5fibbkr2z4jf-libsbuf-14.1.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/5x8w6xxa0lmjwa14mkfimi3k9mjb30b9-libuv-1.52.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/4c9ssafk14djl647676cqv5672s45fjk-libxcrypt-4.5.2' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/jxscl5ryjvp5cyn03ankfgsw5xxl1vnx-c-ares-1.34.6' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/7nw1h3riz3zp54kl68wixdz5h1npshr3-libresolv-91-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/xya4zy2f463yfzipmxvy2pxm5b1gw0m4-libyaml-0.2.5' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/jkczrvalwz64jcmacn4985x28b9brcxi-llhttp-9.3.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/a4x6m2d4fsizxxz1gd9q0y05bagx1y28-mailcap-2.1.54' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/mrrwsfr95ckx8jnj0bk73x8wmsa81hkn-mirrors-list' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/bkxns48j371lfzz4x1qxga8dhkxi7q0w-brotli-1.2.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/17l3iqh7slhijhsbh9a9bzmf0a37iggd-ed-1.22.5' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/k4wwcnx04jppw5zc64s88h9b6f84pkwx-compiler-rt-libc-21.1.8-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/gqsik32r8250l7jy15zhmlm20rlb01kj-gnu-config-2024-01-01' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/g2ah5nmzbccw98m7q3v6xm839yhbp91x-gzip-1.14' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/p1gy09nkzy2jmzh2rbpm0nnmzgsnf613-libsbuf-14.1.0-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/5b95cq9m6pdbx2spiyxhnrvgvfy5cbrl-llhttp-9.3.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ks543mv8xcrp4331dd221nndkiix4fyy-mpdecimal-4.0.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/8ya1xxf60qvzwa6cqajr8pzg1hqnvxcz-ncurses-6.6' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/bdww2r0dpr1f32kqd7vcylymlqg9dsi0-ncurses-6.6-man' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ckx0pqn935algz20fpw2h588xr012mnh-diffutils-3.12' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/n97958y53ykgb2zlwa0sgq7crgi9lrgh-findutils-4.10.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/0hb9yxy0z6q65yykg9l38d5fq5y3q4sg-libuv-1.52.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3iqwdhl9i5kda00bs1jy44c3pn0gb819-brotli-1.2.0-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/yav6rvqfv8g7ri37h3rpsgnkc5nlcj25-c-ares-1.34.6-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/35l3zp5d8g7l26lkpc3y7vs5izbh78mq-nghttp2-1.68.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/yhm2fpmgfk0h32anaz0yq56csdsy3kix-nghttp2-1.68.1-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/yrvc4kjxd7b7bzf9jhlrmdjngsqqipr4-nghttp2-1.68.1-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/07wq5fj5ikj43il3dmghj4a39698i7cm-nghttp3-1.15.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/d91fc02w6qyw9rn1a3rkfh2as76iyjj2-nss-cacert-3.121' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/i81w8pkb9pyz7d30x1m4x7q8fj5f027q-oniguruma-6.9.10-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/4z5dlhn7668rnmab00343i9hqj0q9vz0-openssl-3.6.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ykkcc3jfp3hhxgvvgji9bkrl174ynldj-openssl-3.6.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/pw3sxm8d1kw64gfvk4vy7ww6ykyg9l4r-patch-2.8' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/7rq9a5vn4v9lsih3hyk2vlkbb5kw4jw3-pcre2-10.46' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/0rpdd9iviwbc6dwjszvx41d7iy1zc068-perl-5.42.0-man' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/bfwccvay4774bmzphxkdnbizky5picfj-perl5.42.0-Time-Duration-1.21' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ml01fnfi8qglmplzxj8hhskmbvkv63h9-perl5.42.0-TimeDate-2.33' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3p2hqrbziwwsni9si2mq6npdfp4g9b20-simdjson-4.6.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/0n7v22a9dzn1cgpww2axxw90xj04mx05-nghttp2-1.68.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/v71w9q1n9gx7qv65xh8d2j4dlxbck0w4-tzdata-2026a' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/cy3bnqbihbmxhdzzhsd4kj948lmd67lw-nghttp3-1.15.0-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/q61ydp78wcs21i3aji0pc3xwa78xvd8d-undmg-1.1.0-unstable-2024-08-02' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/rdjaknqab5zx16x89vlzp9sxdzpl700x-update-autotools-gnu-config-scripts-hook' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/inmyqx7646xrcqrwxipacv5gkf3ca6m3-jq-1.8.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3z6x73b1843b5dwhg5adx889vgq5yrxw-uvwasi-0.0.23' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/sk1la8r8sa1rlb8m9kwy5hi29f58sjd9-gnugrep-3.12' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/1yxb5ybmg3367vnlsqayb77ydyjz9viy-writable-tmpdir-as-home-hook' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/fcnaawh32d0s9kg4h74kqxai3lhwhnfp-xz-5.8.3-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/5xsgmqydvmfj1cafcv32pyf2mvm0ix89-zlib-1.3.2' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/0q24810a42m8kn1n01i49w451g4rxzjb-zlib-1.3.2-static' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ff0aj2pp85sl42xvb2w59ynbk1330ygp-zstd-1.5.7' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/zpaiv3csv85i5qdhwlivlbg8a5clnqmh-jq-1.8.1-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/pd3zpzir56yy600l1iy500y7lw03pcjw-sqlite-3.51.2' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/wnbngm46r31nfwihyvi0q2qp5pz0saya-file-5.45' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/70mlrvqbsfkh41y2vwdqz6z5y357g2as-zlib-1.3.2-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/h46rnp90pvk5ky12r9drbzhl1fqlmjnf-jq-1.8.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3q6jdxwx59zhdjvgixqj3w65lgccrs2s-zstd-1.5.7-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/igdpskkz4nfyyl6ax3dv97rhvfpnblg0-libssh2-1.11.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/vg7h22kw194gm7ghyjwj28lfm45861xl-openssl-3.6.1-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/g1fi8csmcbyr4z02697ihsxs6b6qyb4f-curl-8.19.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/qhjqdgg7ddcyaj6kxjfp5cwa4wdd6mf9-openssl-3.6.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/wyxql7maladsv5hhizxj5smkapnsnhk2-zstd-1.5.7-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ja1mrzdf4kkq6lcybhgf0y1bdi4pbnig-pnpm-config-hook' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3d4bd7hg13jgr57gm34k07zhl3ivzgg5-curl-8.19.0-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/knnjn1glll5srmw3vsz2iy5lc88j06pk-ld64-954.16-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/hk4zj7fx4ws35ywr8581iq72609wma0f-nghttp2-1.68.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ii7qn8f9jm7iqiv196nss9z1a0zml74z-ngtcp2-1.22.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/hx6q7n0nkahf43y6q9wgiglwzc8v9s50-openssl-3.6.1-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/vqa3r3prviaw6jjh566991wbfgzqbp2i-libssh2-1.11.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/xxj9aq7qqd4qxckpffagr09w3q9vdg6b-sqlite-3.51.2-bin' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/mgqs7w63j72c74nycbnrajpxmhrlxm1j-curl-8.19.0-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/xy0rdnrwvip9wsaigwrczkc13jwzn3vq-ngtcp2-1.22.0-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/w2zd8g8k3nqp1lg5niwdxnj06p9sdbi9-openssl-3.6.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/kygaslsk90sqmkz9awmxp8j6gmjnpmr8-nghttp2-1.68.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/qq40rzigdlnxxznlhpwcjvsh94kaj88p-sqlite-3.51.2-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/na75idbj3fvjvm1crgsm7wdinlf04rv4-simdutf-6.5.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/y232hw0pamh3zsmjf8ilfyq2ichnzv6q-gettext-1.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3bg9vly81n5485kk4fax49qrjglnl87n-libiconv-109.100.2-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/mnan732zcw3z1b4zz7zciscidy49a49p-simdutf-8.1.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/1ij1f33zqwsbhrkpag7d0yz04p64m2fl-libxml2-2.15.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/3zvdi4qy608m82538zp565f57z3lgp0c-ncurses-6.6-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/j6knvs68pczkklkdvgahlc0c679jya3y-readline-8.3p3' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/in4yc03diyvs2n2wgf3nva4hbvml8v1j-bash-interactive-5.3p9' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/jf12xr43wyijvi9gfccaia2ykzxvwzd7-ada-3.4.4' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/nai3i6m2ngp44n2ysgd4fri6mi6kl18n-llvm-21.1.8-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/p7l727b8br6hr1y7m91rl6v9bjbnyhvg-xar-minimal-501-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/5bygd1lg0k4df3pkwz9absccd3hkwpd8-xcbuild-0.1.1-unstable-2019-11-20' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/a04sbmij2ba455slf378x7n2h3p8zn7d-perl-5.42.0' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/892nvs8jsym28198pvmxd9mnf204j3c9-xcbuild-0.1.1-unstable-2019-11-20-xcrun' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/w556nwah845yxg9k43ir930h9psxkp1s-icu4c-76.1-dev' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/va22g750kafjvkbwvhbnwqqmj9f9dm8m-nodejs-slim-24.14.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/zcbp7z3zaagbm7rpk6hz5zb8qwd40v42-gnumake-4.4.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/z5c2rlpy5g8jgyz1l5ngf23ks3li9i10-gnutar-1.35' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/77hqf10iix9cvrrgkczdridxhb2p0gk6-stdenv-darwin' from 'http://127.0.0.1:37515'...
    building '/nix/store/7ws6wdkcw14zap7aw9cafr11h4qn341b-TIDAL.arm64.dmg.drv'...
    copying path '/nix/store/gb381bva0307p4wxgliwjg1vqirhy9za-nodejs-slim-24.14.1-corepack' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ijdwpfrb1z2maxwji7f8kjrkdl75ra3q-nodejs-slim-24.14.1-npm' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/sf85v1qd1glkmsyfxwn9p8wridb4qf6y-nodejs-24.14.1' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/m1y1qai447mysk42lrs86iaf1l57p117-pnpm-10.33.4' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/s8dm60kfi55qlwk1j1whp0jj7j11s29d-clang-21.1.8-lib' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/dm32is4padx7wrpc47zp2p2rplp11zyk-ld64-954.16' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/zbblxnd78j10s7gv8d2g8msvjiamrl88-llvm-21.1.8' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/vxyn96grm90prz8pb116hxkywh01dlz7-cctools-1010.6-libtool' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/ai7grnfyqy6la6mpccca1v4n7nvn9lni-cctools-1010.6' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/q87hv65x5q7fclsshw34i7i1nky8ml7x-clang-21.1.8' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/h5zqjfvkcqdrh9mnnl9dql9fj1zawmsj-cctools-binutils-darwin-1010.6' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/rcqgjj8hphkhqark1ibiwfaa7yrzniz3-apple-sdk-14.4' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/6i8xisb50w8q3bysbk955s7dp595cm8b-perl5.42.0-IO-Tty-1.20' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/xhglqa4ap2w8b9hinzmyw9jdbnn6h7k7-cctools-binutils-darwin-wrapper-1010.6' from 'http://127.0.0.1:37515'...
    disabling binary cache 'http://127.0.0.1:37515' for 60 seconds
    error:
           … during download of 'http://127.0.0.1:37515/nar/1x4vws7fis9q9d6i5v71xsimmdwx0sdb5nk80pgsfcw2lnwhm6w9.nar.xz'
           error: unable to download 'http://127.0.0.1:37515/nar/1x4vws7fis9q9d6i5v71xsimmdwx0sdb5nk80pgsfcw2lnwhm6w9.nar.xz': HTTP error 418
           response body:
           GitHub API error: GitHub Actions Cache throttled Magic Nix Cache. Not trying to use it again on this run.
    error:
           … during download of 'http://127.0.0.1:37515/nar/0lb43b9hlgd52yz3hxxsdviy4w4dblydm4hinjj13yf1bm87v57q.nar.xz'
           error: unable to download 'http://127.0.0.1:37515/nar/0lb43b9hlgd52yz3hxxsdviy4w4dblydm4hinjj13yf1bm87v57q.nar.xz': HTTP error 418
           response body:
           GitHub API error: GitHub Actions Cache throttled Magic Nix Cache. Not trying to use it again on this run.
    copying path '/nix/store/xhglqa4ap2w8b9hinzmyw9jdbnn6h7k7-cctools-binutils-darwin-wrapper-1010.6' from 'https://install.determinate.systems'...
    copying path '/nix/store/6i8xisb50w8q3bysbk955s7dp595cm8b-perl5.42.0-IO-Tty-1.20' from 'https://cache.nixos.org'...
    copying path '/nix/store/rwsbw420hcq148hifv7fga6r4g0k1dw8-clang-wrapper-21.1.8' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/rwsbw420hcq148hifv7fga6r4g0k1dw8-clang-wrapper-21.1.8' from 'https://install.determinate.systems'...
    copying path '/nix/store/4qh7cfhq3casa8z3304yfvfj1zr1jlzc-perl5.42.0-IPC-Run-20231003.0' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/4qh7cfhq3casa8z3304yfvfj1zr1jlzc-perl5.42.0-IPC-Run-20231003.0' from 'https://cache.nixos.org'...
    copying path '/nix/store/86y4832if8pxlw069mmflik0lxgfy06v-perl-5.42.0-env' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/86y4832if8pxlw069mmflik0lxgfy06v-perl-5.42.0-env' from 'https://cache.nixos.org'...
    copying path '/nix/store/kwnbzccaiqi6iwdchcy6xc8br4x9hn0j-python3-3.13.12' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/5qpb391n5rpgdi95j6sczjsplkkgw2v1-stdenv-darwin' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/kwnbzccaiqi6iwdchcy6xc8br4x9hn0j-python3-3.13.12' from 'https://install.determinate.systems'...
    copying path '/nix/store/5qpb391n5rpgdi95j6sczjsplkkgw2v1-stdenv-darwin' from 'https://install.determinate.systems'...
    copying path '/nix/store/r0b2dc6b101wrpsyy4rg95dbxqqh6mdw-moreutils-0.70' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/r0b2dc6b101wrpsyy4rg95dbxqqh6mdw-moreutils-0.70' from 'https://cache.nixos.org'...
    copying path '/nix/store/lg2in84afvpm35jy062xpak34m6fd36y-python3.13-argcomplete-3.6.3' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/2hipkj74d1jkh5y0fl0zq3w50b0mq39c-python3.13-pyyaml-6.0.3' from 'http://127.0.0.1:37515'...
    copying path '/nix/store/xp2q0rwirj7159j4kcywi15d8xi6g507-python3.13-tomlkit-0.14.0' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/39b3zhqj11dnylxf36kdxm6v8nl3i1y8-python3.13-xmltodict-1.0.2' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/lg2in84afvpm35jy062xpak34m6fd36y-python3.13-argcomplete-3.6.3' from 'https://cache.nixos.org'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/2hipkj74d1jkh5y0fl0zq3w50b0mq39c-python3.13-pyyaml-6.0.3' from 'https://install.determinate.systems'...
    copying path '/nix/store/xp2q0rwirj7159j4kcywi15d8xi6g507-python3.13-tomlkit-0.14.0' from 'https://install.determinate.systems'...
    copying path '/nix/store/39b3zhqj11dnylxf36kdxm6v8nl3i1y8-python3.13-xmltodict-1.0.2' from 'https://cache.nixos.org'...
    copying path '/nix/store/gfj0swayhqm02nidsvh6692gp0kk23g0-python3.13-yq-3.4.3' from 'http://127.0.0.1:37515'...
    error: substituter 'http://127.0.0.1:37515' is disabled
    copying path '/nix/store/gfj0swayhqm02nidsvh6692gp0kk23g0-python3.13-yq-3.4.3' from 'https://cache.nixos.org'...
    building '/nix/store/xvdid7cv5whi7cvr0r2p8486agb5ndg1-TidaLuna-pnpm-deps.drv'...
    error: hash mismatch in fixed-output derivation '/nix/store/xvdid7cv5whi7cvr0r2p8486agb5ndg1-TidaLuna-pnpm-deps.drv':
             specified: sha256-HhBLCc77SzaG7way8LR8mMGEp0cyuUHqUa8CxKUBDTY=
                got:    sha256-ZvCkGin3EPYg+7QL+6E094+OEV/AcFSgMiRSCW0OV6k=
    error: Cannot build '/nix/store/f5ffnf242kdsr2g8bn2pnspgc68fw0n1-TidaLuna-1.15.0-beta.drv'.
           Reason: 1 dependency failed.
           Output paths:
             /nix/store/8fimc4c2ikw2p9q0mhc7n9ax86bnk5k7-TidaLuna-1.15.0-beta
    error: Build failed due to failed dependency
    error: Cannot build '/nix/store/8ic5mpwgj65w1ifc01s7k1d9gjllrk8d-tidal-2.41.3.drv'.
           Reason: 1 dependency failed.
           Output paths:
             /nix/store/zbgskcc6d0x5vq5jqlql7msa5anwfq4f-tidal-2.41.3
    ❌ git+file:///private/var/folders/8j/sfr9qqcj73j4p6nhwcfpr0th0000gn/T/flake-review-urt4srov#packages.aarch64-darwin.default
    error: Build failed due to failed dependency
    
    Derivation diff
    - /nix/store/fmgd4kw95vwp2jp751a7yr4rpr82cbni-tidal-2.41.3.drv:{out}
    + /nix/store/8ic5mpwgj65w1ifc01s7k1d9gjllrk8d-tidal-2.41.3.drv:{out}
    • The set of input derivation names do not match:
        - TidaLuna-1.14.1-beta
        + TidaLuna-1.15.0-beta
    • The environments do not match:
        __json=''
        {"NIX_MAIN_PROGRAM":"tidal","__darwinAllowLocalNetworking":false,"__impureHostDeps":["/bin/sh","/usr/lib/libSystem.B.dylib","/usr/lib/system/libunc.dylib","/dev/zero","/dev/random","/dev/urandom","/bin/sh"],"__propagatedImpureHostDeps":[],"__propagatedSandboxProfile":[""],"__sandboxProfile":"","buildInputs":[],"builder":"/nix/store/f700nj7wlwg441h39gkq29qbviy99sgq-bash-5.3p9/bin/bash","cmakeFlags":[],"configureFlags":[],"depsBuildBuild":[],"depsBuildBuildPropagated":[],"depsBuildTarget":[],"depsBuildTargetPropagated":[],"depsHostHost":[],"depsHostHostPropagated":[],"depsTargetTarget":[],"depsTargetTargetPropagated":[],"doCheck":false,"doInstallCheck":false,"dontStrip":true,"env":{"NIX_MAIN_PROGRAM":"tidal"},"installPhase":"runHook preInstall\n\nmkdir -p $out/Applications\ncp -r *.app $out/Applications\n\nrunHook postInstall\n","mesonFlags":[],"name":"tidal-2.41.3","nativeBuildInputs":["/nix/store/q61ydp78wcs21i3aji0pc3xwa78xvd8d-undmg-1.1.0-unstable-2024-08-02"],"outputChecks":{"out":{}},"outputs":["out"],"patches":[],"pname":"tidal","postInstall":"if [ -f \"$out/Applications/TIDAL.app/Contents/Resources/app.asar\" ]; then\n  mv \"$out/Applications/TIDAL.app/Contents/Resources/app.asar\" \\\n     \"$out/Applications/TIDAL.app/Contents/Resources/original.asar\"\nfi\n\nmkdir -p \"$out/Applications/TIDAL.app/Contents/Resources/app/\"\ncp -R /nix/store/md5d6piv36glj77409pxhfhzrrbgdby6-TidaLuna-1.14.1-beta/* \"$out/Applications/TIDAL.app/Contents/Resources/app/\"\n","propagatedBuildInputs":[],"propagatedNativeBuildInputs":[],"sourceRoot":".","src":"/nix/store/sckhn4ryh7jqkdzqi3hz02sgglkl7jwd-TIDAL.arm64.dmg","stdenv":"/nix/store/5qpb391n5rpgdi95j6sczjsplkkgw2v1-stdenv-darwin","strictDeps":true,"system":"aarch64-darwin","version":"2.41.3"}{"NIX_MAIN_PROGRAM":"tidal","__darwinAllowLocalNetworking":false,"__impureHostDeps":["/bin/sh","/usr/lib/libSystem.B.dylib","/usr/lib/system/libunc.dylib","/dev/zero","/dev/random","/dev/urandom","/bin/sh"],"__propagatedImpureHostDeps":[],"__propagatedSandboxProfile":[""],"__sandboxProfile":"","buildInputs":[],"builder":"/nix/store/f700nj7wlwg441h39gkq29qbviy99sgq-bash-5.3p9/bin/bash","cmakeFlags":[],"configureFlags":[],"depsBuildBuild":[],"depsBuildBuildPropagated":[],"depsBuildTarget":[],"depsBuildTargetPropagated":[],"depsHostHost":[],"depsHostHostPropagated":[],"depsTargetTarget":[],"depsTargetTargetPropagated":[],"doCheck":false,"doInstallCheck":false,"dontStrip":true,"env":{"NIX_MAIN_PROGRAM":"tidal"},"installPhase":"runHook preInstall\n\nmkdir -p $out/Applications\ncp -r *.app $out/Applications\n\nrunHook postInstall\n","mesonFlags":[],"name":"tidal-2.41.3","nativeBuildInputs":["/nix/store/q61ydp78wcs21i3aji0pc3xwa78xvd8d-undmg-1.1.0-unstable-2024-08-02"],"outputChecks":{"out":{}},"outputs":["out"],"patches":[],"pname":"tidal","postInstall":"if [ -f \"$out/Applications/TIDAL.app/Contents/Resources/app.asar\" ]; then\n  mv \"$out/Applications/TIDAL.app/Contents/Resources/app.asar\" \\\n     \"$out/Applications/TIDAL.app/Contents/Resources/original.asar\"\nfi\n\nmkdir -p \"$out/Applications/TIDAL.app/Contents/Resources/app/\"\ncp -R /nix/store/8fimc4c2ikw2p9q0mhc7n9ax86bnk5k7-TidaLuna-1.15.0-beta/* \"$out/Applications/TIDAL.app/Contents/Resources/app/\"\n","propagatedBuildInputs":[],"propagatedNativeBuildInputs":[],"sourceRoot":".","src":"/nix/store/sckhn4ryh7jqkdzqi3hz02sgglkl7jwd-TIDAL.arm64.dmg","stdenv":"/nix/store/5qpb391n5rpgdi95j6sczjsplkkgw2v1-stdenv-darwin","strictDeps":true,"system":"aarch64-darwin","version":"2.41.3"}
    ''
  • packages.x86_64-linux.default (build failed)

    Build error
    these 7 derivations will be built:
      /nix/store/2fkbxwgk82g9r8f4146b82xdlp3xbp5h-tidal-hifi.desktop.drv
      /nix/store/p0xwsyyhpghp672lxcn4fzm1z6khsx0j-TidaLuna-pnpm-deps.drv
      /nix/store/d2j6bknc3pcw6448kcihl4vk9dbghcwz-TidaLuna-1.15.0-beta.drv
      /nix/store/gz873cphj3ifq40d9x2y9q0d6gplxi8l-source.drv
      /nix/store/r6cj8nw5cs8zzr20hfnvardxzx5iap1n-tidal-hifi-6.3.1-Mavy-npm-deps.drv
      /nix/store/ynlbw25yxqsm7mn24d3q08cx7wblwvkl-castlabs-electron-40.7.0.drv
      /nix/store/8815q8505ldsix43z9s1z44vx77jz9vv-tidal-hifi-6.3.1-Mavy.drv
    these 475 paths will be fetched (379.4 MiB download, 1.6 GiB unpacked):
      /nix/store/bw3y1jl96xv3nplfv4hpzgij5l33jfdd-abseil-cpp-20260107.1
      /nix/store/bifwnk7bvspj2mqc1w7dcydz8lkvfy1q-acl-2.3.2
      /nix/store/k98p04gl9h8kwmyyl7g07xln007zi2w7-ada-3.4.4
      /nix/store/3innqpmxwvmr2vc8h51g47aqdl6zj2b4-alsa-lib-1.2.15.3
      /nix/store/mxr9pa3wymy7593nhznd80m3hz496y86-alsa-topology-conf-1.2.5.1
      /nix/store/6l2cp3l8m6p6h13jbjczi1qcg08gm903-alsa-ucm-conf-1.2.15.3
      /nix/store/1m694mi7rrighihwxkbgly189xx4m9nd-at-spi2-core-2.58.3
      /nix/store/p0bi8sca640fnh7vkc90yvsadd0kahh8-at-spi2-core-2.58.3-dev
      /nix/store/sl325r3s6d4gl9lmr2hwg2wgp2m0qs7c-attr-2.5.2
      /nix/store/q6vaqszw8wb3m1wmq8p38qbgc03f969y-audit-4.1.2-unstable-2025-09-06-lib
      /nix/store/cbjl8jkaxxrwlv2aa72hzakhbk4rsw0s-avahi-0.8
      /nix/store/i27rhb3nr65rkrwz36bchkwmav6ggsmn-bash-5.3p9
      /nix/store/4bwbk4an4bx7cb8xwffghvjjyfyl7m2i-bash-interactive-5.3p9
      /nix/store/p2vkw5s89ff1fs2d2rxqxiqil9s0jpcm-binutils-2.46
      /nix/store/97mss3fkxaf0aprk2bllqan9n8cix1sh-binutils-2.46-lib
      /nix/store/kfwagnh6i1mysf7vxq679rzh30z9zj3g-binutils-wrapper-2.46
      /nix/store/zb0vr338s1sq0c7a3ca5i4zx89kjzd4n-bluez-5.86
      /nix/store/mj1k1nsdqr0mp9wsnkg7blgh3xf5wssv-brotli-1.2.0
      /nix/store/1x1msj33z37b65vlxbs51l7i4j92qn9h-brotli-1.2.0-dev
      /nix/store/7ff90dag7i173s49c5m614wny2lpps1l-brotli-1.2.0-lib
      /nix/store/2amncb4zvr32gm5d2i8m6gz29c02cn61-bzip2-1.0.8
      /nix/store/zj6r42syyswkhrr174bzppj3n7xhq936-bzip2-1.0.8-bin
      /nix/store/bh64ycxf96cc4v43m77nszmpvbs0pfv7-bzip2-1.0.8-dev
      /nix/store/2zn3jw8xvvs4jqdxc43qc3h2fgx55qmz-c-ares-1.34.6
      /nix/store/vgkpd3gpc09z4pz4wf4aqrzi2ch5p8ag-c-ares-1.34.6
      /nix/store/jp0mf0756vlv1pzfg6ik0yq8bwkrm0w8-c-ares-1.34.6-dev
      /nix/store/hgvr4xvcqm4a06rq5scgcy6nlk5q89gd-cairo-1.18.4
      /nix/store/8zhjvm4vixgvg089nn4wv7hhxlp7qg2c-cairo-1.18.4-dev
      /nix/store/jy5nsymr5ydrmgckhxk27k1v3hacgam5-cdparanoia-iii-10.2
      /nix/store/1mllsxswxkddvy2l0rwqf9yrnjjml960-chromaprint-1.6.0
      /nix/store/svisc9ygim813hpjvy6z634vxqscl2pd-cjson-1.7.19
      /nix/store/gn9pn9gc0cmnpdhylazfg26lxby30w69-copy-desktop-items-hook
      /nix/store/jjxngswsb214vb58qx485jhmilf0kxxy-coreutils-9.10
      /nix/store/clqccv8lcy4rqrd15gc9l4l0r2dwncrz-cracklib-2.10.3
      /nix/store/v7m00qyyqvwx9f5k1pjwbmvkjpwkjkdb-cryptsetup-2.8.6
      /nix/store/82ijqnr2xdzw65vsbjvgcbb7s0xrzh81-cups-2.4.16
      /nix/store/g4hxm4rk504vm7py42h4m0309j98da71-cups-2.4.16-dev
      /nix/store/7cyfjdf16s9fwny90wa7ybdmpbq5fgd4-cups-2.4.16-lib
      /nix/store/pz6b64891m180yb4hadj1jjg3wm3ybng-curl-8.19.0
      /nix/store/vk8cv7mc3fz6szqlbdggbfqy1khyhdl7-curl-8.19.0
      /nix/store/klqjq04ms1g8skvj7xjlcwji906cyrkm-curl-8.19.0-bin
      /nix/store/bs6pcmlpyv5q6304mjn137myab9qcfp3-curl-8.19.0-dev
      /nix/store/xkv34sn9p3ahkxfbh4rmbdk6h15l6xpp-curl-8.19.0-man
      /nix/store/8k3z5xgcid7im93dqic97wjkgsn8rc4r-dav1d-1.5.3
      /nix/store/9jc7n564rzmwqglgf3b6yahbm1zbmmfr-db-4.8.30
      /nix/store/g6a7agib4hbnvqcny05fk8dfjplw8nkb-dbus-1.16.2
      /nix/store/6xzs85s04k598dchdp1jmyia35ajwn6l-dbus-1.16.2-dev
      /nix/store/yanmwp5f435ing2nbhwa4v0gdmpl2an1-dbus-1.16.2-lib
      /nix/store/drb83w6a58kq3i07icqvna1jjzhslqv5-dconf-0.49.0-lib
      /nix/store/0wcl9csd4li3na9z59j7g1igf2c1iz33-dejavu-fonts-minimal-2.37
      /nix/store/sssk0q15dqjmn8xf0sw5ri16331mk0qn-desktop-file-utils-0.28
      /nix/store/y3yx2ifdbki6vl364da0h9chyv0wbhpc-die-hook
      /nix/store/hx084k7pgz4n0vgkvil9gbcnl8y6p1xf-diffutils-3.12
      /nix/store/xah4fsfflvkx1h63ahzjyxrkicvmmv7g-dns-root-data-2025-04-14
      /nix/store/jw7ki3s7krg2ddq00hb8563bd1i4ddrg-ed-1.22.5
      /nix/store/qph045w6z4ss6l0awl1sh228gdx98xns-elfutils-0.194
      /nix/store/jacg9gprvvra7d3wdskq4cl3vra00gf9-ell-0.83
      /nix/store/hmszpzzhc207q0id52shxs44ylgbf3kg-expand-response-params
      /nix/store/pa6n8nrmgq8jswk2pkrl5qprcls1r0ch-expat-2.7.5
      /nix/store/fh7mrqx8h83rqxpkn5vywr30g7pb0pcz-expat-2.7.5-dev
      /nix/store/yvzzi7n44a5srjaqajxm6vw418limzf8-faad2-2.11.2
      /nix/store/cfkkpdrdd5llv7hzhs54g1zgqw544w95-fdk-aac-2.0.3
      /nix/store/j7ilhb1igly7gyv2wvshix3yjxxks418-ffado-2.4.9
      /nix/store/iq7xas5gq6dfhdnwar3x3rsv2qlb52sa-ffmpeg-headless-8.0.1-data
      /nix/store/vrcabrcsnday2frdabpccbxvhsyhsc70-ffmpeg-headless-8.0.1-lib
      /nix/store/84crpkdlv33nx4kahqzkss83fvpp8x3q-fftw-double-3.3.10
      /nix/store/blqd7p311lzsbfvcyf0h2df964z9qbi2-fftw-single-3.3.10
      /nix/store/dc2kidkyva5gzkjkkbw7x13d8nx19cif-file-5.45
      /nix/store/iscmg3ivhx7z67dz14lrg7p77gnsa4dw-file-5.45
      /nix/store/vhsirn9m1ifmnw5g1qczzhvqkx6lw1if-findutils-4.10.0
      /nix/store/cyp7q6z5ph5rwp9c5p6salvg5yy69rbp-flac-1.5.0
      /nix/store/s80ra5af77kjshl8saana9vypydqwxg9-flite-2.2-lib
      /nix/store/wv1b5mf42vy82mvxx237h892m5mcmazl-fluidsynth-2.5.3
      /nix/store/v2krh8s71189dj04parw03g1w111ba87-fontconfig-2.17.1
      /nix/store/v18drszzvspk1wlq06r68nxgpn2b4cvd-fontconfig-2.17.1-bin
      /nix/store/gjg4aagfcn6r96c73rz4rwbclbdqqc6v-fontconfig-2.17.1-dev
      /nix/store/bg6ms0vw071g1fdbx2my6bbzsk62p6vd-fontconfig-2.17.1-lib
      /nix/store/cq5mvnbmyj54h64drsww692m1jigh011-freepats-20060219
      /nix/store/zr22ggqbv79yv4y4wv06r4grla9h59yx-freetype-2.14.2
      /nix/store/r7bp82svf04jqw3x7wnjlyr951jkf85k-freetype-2.14.2-dev
      /nix/store/9srjnld6mqyrw99v6ds2ipz44h12cj44-fribidi-1.0.16
      /nix/store/d0kzxdq2y28b84jw0jqkjb6ypsrjp19x-fribidi-1.0.16-dev
      /nix/store/klkzril2bm1s5fh9i4mmq57ba1hpcbxb-game-music-emu-0.6.4
      /nix/store/lakv43kv98sl6h0ba6wnyg513mcq61vl-gawk-5.4.0
      /nix/store/sanx9fg8mry8mq92zhlm5qvb83qlxrlx-gcc-15.2.0
      /nix/store/si4q3zks5mn5jhzzyri9hhd3cv789vlm-gcc-15.2.0-lib
      /nix/store/wrxyd3k2f4bmh52pr5rpdjxxsm5r2qxm-gcc-15.2.0-libgcc
      /nix/store/qd70v8g0561vm8m33kmnp79z00cgyi5n-gcc-wrapper-15.2.0
      /nix/store/rnaq5b0la7pcq6hyf86iy8ihazgcamg6-gdbm-1.26-lib
      /nix/store/pkyvhnszc7h5nncashff6xqykb7d20zx-gdk-pixbuf-2.44.5
      /nix/store/53i0wb0l7zs8gm6mv3df3yqvmmg23kk3-gdk-pixbuf-2.44.5-dev
      /nix/store/ypj27q94ay0ybq9aa14gk0cxjv9d7z4m-gettext-1.0
      /nix/store/wp2xv937c5fn1f2zwy5clp9dd228ls0j-giflib-5.2.2
      /nix/store/zcmsivndca5wmam9nwnbjrm0zkgykwfz-glib-2.86.3
      /nix/store/b9jcqjd8gnxr87p7wc91lmbyd90kzlc1-glib-2.86.3-bin
      /nix/store/kw0yjwbvw6arwgwaa3p8rz46qsgy4626-glib-2.86.3-dev
      /nix/store/fjkx1l5cnskzrqacf08z7i8z17256w0j-glibc-2.42-61
      /nix/store/pf30k3mg7n6bibc1k6609gyq7glk00k2-glibc-2.42-61-bin
      /nix/store/fbbw928argckfii0j322346ihmllg7a7-glibc-2.42-61-dev
      /nix/store/5722rfnbamx35h5df4wlvlqrmvmaan7i-glibc-iconv-2.42
      /nix/store/sp7b84c2jnbskd6dm2n5splgipg9d1f0-glibc-locales-2.42-61
      /nix/store/lkbw0zs04b055d0fw5vis981m90by4rk-glibmm-2.66.8
      /nix/store/aq1mmp3scqgc31ki5p8qbl0zjwc6a8kq-gmp-6.3.0
      /nix/store/1agm3iac17cykdmabxck60vwk5sjk4wc-gmp-with-cxx-6.3.0
      /nix/store/5yypk94lvsbvskjz5xyav09j5ydxm8za-gmp-with-cxx-6.3.0
      /nix/store/jzm7j0y2ph7dc1bdfdwdaa653b9mr3m8-gmp-with-cxx-6.3.0-dev
      /nix/store/kppfbp4x7mhfz1q5zswavxxxq71v2f7c-gnu-config-2024-01-01
      /nix/store/wf7lr2hf43546jc5kwqh3dbxnpcnw1mn-gnugrep-3.12
      /nix/store/vd3sap38n356p4z4sbfiq4zra5nw8bzx-gnum4-1.4.21
      /nix/store/yvrwcs1a45rj8142n0l2w9q9s6akamjr-gnumake-4.4.1
      /nix/store/rv6axa68r429ly38kjmkbyl1kypik0sz-gnupg-2.4.9
      /nix/store/af4a8i43kc2ss4rnmf0swkk2mprsw6xq-gnused-4.9
      /nix/store/p7fgjbrlvxm4afsgrxsix1n826k74xr9-gnutar-1.35
      /nix/store/rnvb7bvp53v2dw7pcwh9xb89x5z4rjib-gnutar-1.35
      /nix/store/iqxk6z95kyg1db1zv89z5rfhw42d033y-gnutls-3.8.12
      /nix/store/605d4amjdqlc96g68rgrifsh2ldsvfr4-gobject-introspection-1.86.0
      /nix/store/1xkcllaw96ap87pj4d68q4zv414fyiv1-graphene-1.10.8
      /nix/store/qik1sfr8z8w4ffrd21yv76z2nvwyhmn5-graphite2-1.3.14
      /nix/store/6fbbmfpp3j9yd8yi4g1j2ajy987splhi-graphite2-1.3.14-dev
      /nix/store/9kng62z4a2afxcs2kpfl8lkb1w0j4wh7-gsettings-desktop-schemas-49.1
      /nix/store/iy84c4w5lg8h8gl9ankfcarfrja5lmg4-gsm-1.0.24
      /nix/store/czcagbzb9c2l3k2q2n1nq6zdkasdg9b7-gssdp-1.6.4
      /nix/store/xbd4z2d5ddl5w7cxjbpvb245jddbg37c-gst-plugins-bad-1.26.11
      /nix/store/cl0shrxzs1h3pzgfnn94yf8rd7823wnn-gst-plugins-base-1.26.11
      /nix/store/vdkighb8xwiaj8jg8pcjyv38hj8fd5vl-gstreamer-1.26.11
      /nix/store/9z7b0aws2a4nlaqmqc0ib5wk83znivdb-gtest-1.17.0
      /nix/store/8ycx83hg9ba53hmlgq9qcfnm5yikd70j-gtk+3-3.24.52
      /nix/store/fl75ki4bwr8lj8w63c1yr4v3np177sv7-gtk+3-3.24.52-dev
      /nix/store/l1k4d9q6bm34qp38gqrlyfz2a125i1gb-gtk4-4.20.3
      /nix/store/q621jnv7ikcwqz13lq4y7r0n8iwfv82n-gupnp-1.6.9
      /nix/store/iqcgllabpr3v1b8j9p2197lh7jfpi0hm-gupnp-igd-1.6.0
      /nix/store/9lhr1c3l9qzv8pzp3idmii1nwvxxjys3-gzip-1.14
      /nix/store/rpd86021fc7q0mnzjrbcdnyi62qarql9-harfbuzz-12.3.0
      /nix/store/ndr1qrjb4y4p66b51sf49x95mymmvr2l-harfbuzz-12.3.0-dev
      /nix/store/m6bj8lny79pziwqdpb7q5g7iv65ivzcz-hwdata-0.406
      /nix/store/0dmcpvbp2rvz8a7p2yhsrkpcb41kr6wl-icu4c-76.1
      /nix/store/fga8simmllr8rlxql3qfb41620yh3n3p-icu4c-76.1-dev
      /nix/store/l8hfphs7snwy6j911rf4zqp01bmwzl44-imath-3.2.2
      /nix/store/m1gsfdqfgbvx2kwqdpg32nms1kvp27br-install-shell-files
      /nix/store/d760w95rdva7hgq9nis0wq12lrlkg8q1-isl-0.20
      /nix/store/3dhff5kkl5ankj1m7ahcw4qldcm2qcyh-iso-codes-4.20.1
      /nix/store/09bq2i0kb008ccg3qdbyxv81ggxxnn09-jq-1.8.1
      /nix/store/v5c3inhfq6xshmwg1c254vfbcy4jp3k9-jq-1.8.1-bin
      /nix/store/p8x5zv9s9qg3ld8b7jdm03hkpdqybjl9-jq-1.8.1-dev
      /nix/store/j37n6ymc0l22rkw1338hpq29r38qima2-json-c-0.18
      /nix/store/bl5pa0xky1syw4zihvm0ga91w2yywsjz-json-glib-1.10.8
      /nix/store/6zvnkhqk669qn4srr8q6rgcx4pmy7iby-kbd-2.9.0
      /nix/store/5qkqvm1a83mmr33dfrdzsizjfd0fadxx-kexec-tools-2.0.32
      /nix/store/8w2bc84sdwzdb3ab31lyidax07kk4nlj-keyutils-1.6.3-lib
      /nix/store/s3pzr5zmznny2fscz6qiqw42gaymmd4n-kmod-31
      /nix/store/7y14m3wjjvdlw005mkicn75ifl3l9nlk-kmod-31-lib
      /nix/store/4zj0cy2gvhskszyvzjhqmiygirm4n68l-krb5-1.22.1
      /nix/store/2rwa97ifi9agfx3lx2cda446gfnj93bm-krb5-1.22.1-dev
      /nix/store/79k3m4jypslglx3gl4riqmr7nglv9cfx-krb5-1.22.1-lib
      /nix/store/8cr60j6q7rqmcy4k8l6l1cay9579kd6y-krb5-1.22.1-lib
      /nix/store/fyzvlrhpapp5cf7znizb3cyr6ak4sfa7-lame-3.100-lib
      /nix/store/3j2yd136zgln9w2hsrvlmazyrhcnfri5-lcms2-2.18
      /nix/store/9pl1wplry8iz7wazq2rchmpf1w2whw9c-ldacBT-2.0.2.3
      /nix/store/ml8y91ckcp71x4c9qdx5l2zgrg520and-lerc-4.1.0
      /nix/store/djbxg807z72lmky0mrl99k864lymp0sc-libajantv2-17.5.0
      /nix/store/x3bd0agpp4qj2b9nldykw5dxc9wm1ai1-libao-1.2.2
      /nix/store/q39bv3q1brs9lfhp9wmb5vk4d6zr21mz-libaom-3.12.1
      /nix/store/d5fwbdqfrv0yfd6b9m0zi3k6lv8lyng7-libapparmor-4.1.7
      /nix/store/nywq4anm93j14x66hcrf1wss41lyg8c6-libarchive-3.8.6-lib
      /nix/store/h5nd970h141sc5n0sc2qp6k8h7plsfhr-libass-0.17.4
      /nix/store/a6i62g66943bzs4vcb2g69dj6dv712h7-libassuan-3.0.2
      /nix/store/5n13kcsb3lzfbk8mymfvaq1zh9i5ri2k-libavc1394-0.5.4
      /nix/store/z9bd9j295kcfsailc3k9vzgypiikvgvr-libbluray-1.4.1
      /nix/store/djz6hac80yh1jpynajq3rwsd3r034332-libbpf-1.6.3
      /nix/store/ww9w2r2fgqni9wm8yklfshv5wsvg7d0g-libbs2b-3.1.0
      /nix/store/s7i21xzvhcwb8qig4vy410d155zbahic-libcamera-0.7.0
      /nix/store/85rzc6g81v3abbr09vcvp6yywlh22xkp-libcanberra-0.30
      /nix/store/zg8zpf6wnhf2fhc0bk90yy88ls378v48-libcap-2.77-lib
      /nix/store/0v5qkwsrg20cmfa9a7nsjarifymdb15c-libcap-ng-0.9.2
      /nix/store/k00ighhic3x8g7gsv919zay12hbv94hl-libcbor-0.13.0
      /nix/store/skxmb2l0d96nr3810ch8dyk5n50x4pm0-libconfig-1.8
      /nix/store/s8hq0zmjmcihwip9hxq9jwqaacrq8w67-libdaemon-0.14
      /nix/store/p9v9m9k1yinv56mi1c1w5xjrl5asw6sh-libdatrie-2019-12-20-lib
      /nix/store/9ickhqnzp6hjgyvl5j3yl2nhmzs22bm3-libdc1394-2.2.7
      /nix/store/n9rn8baw2c8gcndzlna5qyfam9vrfwq1-libde265-1.0.18
      /nix/store/iw12p93v3gbbz9n7v20qy5hyzahzfy4z-libdeflate-1.25
      /nix/store/1jx6xl1bn80av3xmiarlb8lnavmc4grs-libdrm-2.4.131
      /nix/store/sqvm6lz2lbn43zflil7rgn9p0d86gpfd-libdrm-2.4.131-bin
      /nix/store/n80alrbrr59n9b2qnj8z52yj0zn1gcwm-libdrm-2.4.131-dev
      /nix/store/f9wyi655i30ci7jw4z4y6g70qami6cyr-libdv-1.0.0
      /nix/store/x7f94w843cvc12xa4i9sn4zr43j6pdm5-libdvdcss-1.4.3
      /nix/store/iw40cii4hf0lsynfhzginaccx3bhaym8-libdvdnav-6.1.1
      /nix/store/zryfpkzsjg4v0z6s6bij86x12i08azhs-libdvdread-7.0.1
      /nix/store/nk9nl20yag1nd1a1ypjvy39c2qcpcaxr-libebur128-1.2.6
      /nix/store/f8yff1anpl5dr3bsrq40dq5x9yfz56hs-libepoxy-1.5.10
      /nix/store/h2fnj4cxg0319nqllmc97xdbq9hfhr0a-libev-4.33
      /nix/store/zpi6wk9q1kk24nznhhkm1vb0hgb243dx-libevent-2.1.12
      /nix/store/hyai3q7gvdfppw4ky7s2mvhxvfyp5bh7-libffi-3.5.2
      /nix/store/lg8kfrcxy4bcwnlwbfn6x3s48k4aawba-libffi-3.5.2-dev
      /nix/store/clag0mwqa7x6gfiy6c12gqwr0pxyqk26-libfido2-1.16.0
      /nix/store/h9k9yaax33bdzpzlmrvwvmg1bjs4ig5r-libfreeaptx-0.2.2
      /nix/store/ij3kvmcm83z03wmmylzdr4kygnqp2hw2-libgcrypt-1.11.2-lib
      /nix/store/fdqacryg2w9kiwb94c9rzfsyff4im8xj-libglvnd-1.7.0
      /nix/store/crnjlpi5fymlsdiynhi5wdgzc6a9f75a-libglvnd-1.7.0-dev
      /nix/store/kcx00cb65s35icjy6v1yanw75zv70ipx-libgpg-error-1.59
      /nix/store/71yw3b3hz92ghyr1sjksavgl7rp52vr6-libgudev-238
      /nix/store/sg219gs48rwvlhs4dqnqrcsmh4vfmwsf-libical-3.0.20
      /nix/store/qhw8zihdm481cvia6pd0kl2fmqk9mr2k-libice-1.1.2
      /nix/store/07rdpwd0gxa48k7p7p9mk6h0s0p5zknc-libice-1.1.2-dev
      /nix/store/sgswwrxkhdlfskklqp4gsbi2cskfg07c-libidn2-2.3.8
      /nix/store/kmfagbfq5yjzwb8i1jyslndr829gz57z-libiec61883-1.2.0
      /nix/store/q58cl6y8kih736dw4spam1f5b633qxd1-libjack2-1.9.22
      /nix/store/lsln4vpc8spwmb96vjjmg4yd0krd2r7c-libjpeg-turbo-3.1.4
      /nix/store/v70k3ch8rcw9b0la3axqb34dkyxqnx2s-libjpeg-turbo-3.1.4-bin
      /nix/store/b63lk3n7piwf7a790c4cy0zinqi184fs-libjpeg-turbo-3.1.4-dev
      /nix/store/bbcm631kh12750vwcbx193idqzqvsmj6-liblc3-1.1.3
      /nix/store/lc6xmmwa5zs81zccsrp4qi775zn692sx-libmad-0.15.1b
      /nix/store/vc0xg18r6wwi8bdpvh08fydy593jchwm-libmicrohttpd-1.0.2
      /nix/store/ls8vsk354qazlm0vp2zvvn84l2da1fa5-libmodplug-0.8.9.0
      /nix/store/6cpr1x5ydr8cypwpds5a033vwd61l7wq-libmpc-1.4.0
      /nix/store/q609yrc76vk3kg074scpvwdkv5iw61f3-libmpg123-1.33.4
      /nix/store/ifknssksmkxg38g7g7bipwbjc4fy57vl-libmysofa-1.3.3
      /nix/store/xgsmlhj5ch6msbzk915r34394axa7p4r-libnice-0.1.22
      /nix/store/48zpr03lhzxp6k4wn3vpjdx3dm4p1631-libnotify-0.8.8
      /nix/store/1wnga7gf22f16g35f5ig5ni9w045ix5v-libogg-1.3.6
      /nix/store/b5j93yj99560908mcxcr02ai079n1kyk-libopenmpt-0.8.6
      /nix/store/hvp8495gl5845dyxaxvp766h89qfcxpn-libopus-1.6.1
      /nix/store/kb9njmqgqrrvy6lsw4jb17rkv9bgd3lv-libpaper-1.1.29
      /nix/store/nr89gm5nhqyg7zsb185lgpg2qw6b8rcx-libpciaccess-0.19
      /nix/store/gsn3vddway3289p6mzy5shd1paly8dp4-libpng-apng-1.6.56
      /nix/store/h176f4dhbcpj4lpf8sn28vdqp1mks5jk-libpng-apng-1.6.56-dev
      /nix/store/79kr7fafcvvmch13cyczpckz40159pk5-libpsl-0.21.5
      /nix/store/rvx68qsgl3qm8wnyywbdkvh2gp47np5p-libpulseaudio-17.0
      /nix/store/rwln5xpxszr6b08p9zj0zcnnbplsg0vs-libpwquality-1.4.5-lib
      /nix/store/4cp1pgi042zq1lg6wkf9cjrjd1wsvlz3-libraw1394-2.1.2
      /nix/store/6bmlb3v7m02q7xl88nrba1j3x9hvd25f-librist-0.2.11
      /nix/store/4cvbp49wlc9d7s6rivyz2s4fg8rrz9wd-librsvg-2.61.4
      /nix/store/6j4lbsn5k0ymzjcf28fwj783zpjhb7r7-librsvg-2.61.4-dev
      /nix/store/2rnk6byc0ljiqlzg3c04ks3kgsv2i3dk-libsamplerate-0.2.2
      /nix/store/2aajl8awipja7wyf8pjna7vfri18c6va-libseccomp-2.6.0-lib
      /nix/store/whg0adb5366lwb5z9xv2fwbc7qb3q9sk-libsecret-0.21.7
      /nix/store/kdlv714j07803x3ynn2w4a44xi84bh0c-libselinux-3.10
      /nix/store/4xbjwiy4cgccj7m0444w6aflrwdyp7am-libsigc++-2.12.1
      /nix/store/wnmwabsnj34j46c579y0ypc29xjfxjwf-libsm-1.2.6
      /nix/store/sl65d0g3k4f6v5w7xclx334zzcj1w533-libsm-1.2.6-dev
      /nix/store/j2cqk5ini5aksyhl03ajj0zhd7sqw163-libsndfile-1.2.2
      /nix/store/nrmrlc3lxyfjw20qw78dzdqphq5xnxfn-libsoup-3.6.6
      /nix/store/0ik3a3hs5844lzyp1w4qjpqmxlaphaby-libsrtp-2.8.0
      /nix/store/kf6q4l8inz4xm4lj0k4idmdcqxsn26fj-libssh-0.12.0
      /nix/store/9lzm6krq5ikzbqbmazbh5jmzwph99rz3-libssh2-1.11.1
      /nix/store/w5h22rxig70nv759830xr25854fl35nk-libssh2-1.11.1
      /nix/store/dq7sxbi2ps4nprf5ngqwpv85adhj4bsj-libssh2-1.11.1-dev
      /nix/store/yrcvixbwzd225h3fs8ykl73492ldxgqn-libtasn1-4.21.0
      /nix/store/6bhki1k3ck0azd4dlfpb1qs8fcb0a3qs-libthai-0.1.30
      /nix/store/kfl7drgh1xahqsg8927y8cj6jwlcam8z-libtheora-1.2.0
      /nix/store/6w9m0a1v9kx40q341wq4y337s8csqhyn-libtiff-4.7.1
      /nix/store/cbdy1d44cqa9j7x0ga72dqsk4p49ih70-libtiff-4.7.1-bin
      /nix/store/ankisnmp03gzp9m0z4bqy1i2ar23wb48-libtiff-4.7.1-dev
      /nix/store/80nn32pysvx9g5gywqx73k3vrmr24968-libtool-2.5.4-lib
      /nix/store/6k37b3i1gnq20xwdqr71h248zmfjkby1-libtpms-0.10.2
      /nix/store/i4gg1f526vl5psg5nqniflj4v77vc1kd-libunistring-1.4.2
      /nix/store/ylcr49l6abg499vs0xv5rxw7nwvqppzr-libunwind-1.8.3
      /nix/store/fj2y23jg8sbjq029fmjxg3c75gdm459v-libusb-1.0.29
      /nix/store/yiw5hnsdql8zs25invyr8mgi1asy4lwy-libuv-1.52.1
      /nix/store/92ihchql3w9pb0dgxlpj5pbm7sccf8vi-libuv-1.52.1-dev
      /nix/store/9y62g5a1ya48llmv12kn6lrw7n8ylksp-libva-2.23.0
      /nix/store/7awdp120028a4l51y2qvyhq9plfj0mww-libva-minimal-2.23.0
      /nix/store/5zdqaj5pnmjxwlbnd784jpjdjnxhvhnh-libvmaf-3.0.0
      /nix/store/x6dw3rlh07vdq35fhvr9bk0am77qm38z-libvorbis-1.3.7
      /nix/store/jjxp3jp8fm449vpdz5pc18i430xw6ixd-libvpx-1.16.0
      /nix/store/njiw4vf4dqdmc6mc85dscm0mszpb6vxs-libwebp-1.6.0
      /nix/store/vdz5z5d4qvsfqdafihrfwzi5r7wr24lk-libwebp-1.6.0
      /nix/store/5m91jqg1526jzsahrgmd37k4ml3nc5l4-libx11-1.8.13
      /nix/store/4303g76pqhl7r8a2xvci0b4bj47bfbjz-libx11-1.8.13-dev
      /nix/store/2krkc90x3ch0mgkk48fxlglq14nqapdr-libxau-1.0.12
      /nix/store/hd6i8dzybk2jqwqh6frarw30w15yqq9b-libxau-1.0.12-dev
      /nix/store/fc1g44pg3i10wfzh3gb4m54pfgclsn76-libxcb-1.17.0
      /nix/store/x44m80ahg51pz32dr0j39yzsr7bn7d5v-libxcb-1.17.0-dev
      /nix/store/x0cqnqvf0v9lain5bkkkq11f0089whvr-libxcomposite-0.4.7
      /nix/store/qfim6c146wnyszb7ij8cfx7glagx2m1a-libxcomposite-0.4.7-dev
      /nix/store/0ksa3i39aqkwdrh2q0s1svwymhc1w3dm-libxcrypt-4.5.2
      /nix/store/917cm887c5gz2c56ihys80mf2g8fkjj0-libxcursor-1.2.3
      /nix/store/71ic50c2k9c7rw7r8vdas795bh5fg4sz-libxcursor-1.2.3-dev
      /nix/store/j2mxvm7bpxgdbmxhcw2fgvli7x5g8brd-libxdamage-1.1.7
      /nix/store/x6j441mf1j700rkl09gaf89gfwh69aac-libxdamage-1.1.7-dev
      /nix/store/yr83qw7bdfdxf5lb2xmfs70qb5hap0hj-libxdmcp-1.1.5
      /nix/store/n1ykqk7ibmp4h5r4x5fng4cn9wjlgj9y-libxext-1.3.7
      /nix/store/1kx6y7spy0q6372hqrvib7mw21gaq5bq-libxext-1.3.7-dev
      /nix/store/b47r32di2p2alprjnylsk9wg3m2gjd21-libxfixes-6.0.2
      /nix/store/8bx5rrc94g1wl124n13gk5vrprpbrxn1-libxfixes-6.0.2-dev
      /nix/store/fhzi4zq4hy8hn2kywj06fbkcrha48291-libxft-2.3.9
      /nix/store/j2r44pjin96fxrw98i213yrpsvnmx1d6-libxft-2.3.9-dev
      /nix/store/wnl69g3p3cb415xxxz09hfvrj624fg18-libxi-1.8.2
      /nix/store/gs34fdhbiw5ndp1akqbib2zsry53vi13-libxi-1.8.2-dev
      /nix/store/lf8zr1p4x09ws3kk9szzs48ixivw084s-libxinerama-1.1.6
      /nix/store/dwhvd3z5vqh6rb41q4k4awzc2n89dx5k-libxinerama-1.1.6-dev
      /nix/store/0c0xdj7xpilqfy2p33l1jm407f01652w-libxkbcommon-1.13.1
      /nix/store/y4rsqz91mnj1i9a8g77wx6khi9pzbdpa-libxkbfile-1.1.3
      /nix/store/a7a249mgz26lavqrm4ns1j9yi36x7yzh-libxml++-3.2.5
      /nix/store/ygkyaqnzsz3pf7ly1g7ggh1bp5h86mcp-libxml2-2.15.1
      /nix/store/8crm1m4x7xqq7nsp9p1war9scj2pjry3-libxrandr-1.5.5
      /nix/store/awl6y26rcckvvk4gb8qi7h7x12k5c397-libxrandr-1.5.5-dev
      /nix/store/dwavjjnzjmp7901n2s61kw40qw8c5rfc-libxrender-0.9.12
      /nix/store/94m0129pm3jlbg4fj8py92j1vi870m9c-libxrender-0.9.12-dev
      /nix/store/mznm7wg12j08jy4plbwi8x6yaqf86xdd-libxshmfence-1.3.3
      /nix/store/97cl9bqalmjfr07z0q85bb86896rw965-libxslt-1.1.45
      /nix/store/l00ir5q20dd0hjc7v9r7x86wwm8j3ans-libxtst-1.2.5
      /nix/store/3i7amp95b8la0p16m90m882f26vs0m2b-libxv-1.0.13
      /nix/store/5by3i4053gppzf3ci7ygv1mj8gjhp6mk-libyaml-0.2.5
      /nix/store/1gg0z09wfdslmc83jp43553hl15cc6g4-lilv-0.26.4
      /nix/store/6z76k3c19802b3w1rz4psfn7pd43n7i7-linux-headers-6.18.7
      /nix/store/qsdn4g854k8xnawghm7bq03dirq53mw4-linux-pam-1.7.1
      /nix/store/rqm937a4rpsa6qdb86slfjkvm7h4wjd5-llhttp-9.3.1
      /nix/store/sxm3gva62py9qxnhrm9bcb28gsclv7w5-llhttp-9.3.1-dev
      /nix/store/8x8qwdc8gn7z0x7xvfp0bjq9fkidr52r-lrdf-0.6.1
      /nix/store/gkdgy79sz0xsyipy6g0arivxnk7hlwc4-lttng-ust-2.14.0
      /nix/store/4bfhmsiilfpar1y4dqfiwl2wbh0gkzkz-lvm2-2.03.38-lib
      /nix/store/fy28r1ynjk65gnj898k9dabyvzz9mryc-lz4-1.10.0-lib
      /nix/store/s7kkrijqj230fl10i0rax7l2fcfbqczm-lzo-2.10
      /nix/store/b73wvf83q4cjwzz99pdanbl8qpfawr69-mailcap-2.1.54
      /nix/store/70v905wmv0kv4992zs6wdhmfly4frbhb-make-binary-wrapper-hook
      /nix/store/rrzkvxiy2pa3v4bm5n6y6hlx9m731bmc-make-shell-wrapper-hook
      /nix/store/wkjkvkjiq3xccimja7a1nn2p78hjyav3-mbedtls-3.6.5
      /nix/store/9434wg73ynb25zfq3gvr5vij9rn3p9wh-mesa-libgbm-26.0.3
      /nix/store/pdrv3g6m904x35m8n5qglf8hfry5csy6-mirrors-list
      /nix/store/dv84fffz1pax4bnq8wrii2z35kyms7gs-mjpegtools-2.2.1-lib
      /nix/store/4scs7wp5qhg7dylh3263n8himd5prwpv-moreutils-0.70
      /nix/store/yw0fl2v8g35w2dii8phnr0fjb9nr1b0b-mpdecimal-4.0.1
      /nix/store/09dza6zabfgf9wn44sx009ycwj5ssidp-mpfr-4.2.2
      /nix/store/9x816s8i1g73wqij1njnbmglnvi7k9lh-mpg123-1.33.4
      /nix/store/2iaawa9vbqas51lgpn4cjnnfdv74x8fn-ncurses-6.6
      /nix/store/fmnrwxbs7x8ppffmfxmvgqal848xxsj4-neon-0.37.1
      /nix/store/pyyxq80mj4j7cxkrx7cvpwxk89473jjw-nettle-3.10.2
      /nix/store/8a06kxy9vc8mvz15ar9snyf9kdgjrjb6-nghttp2-1.68.1
      /nix/store/cfnra735sh6n0v2z7ibzz8h9v0xlx9kn-nghttp2-1.68.1
      /nix/store/1sc8mkcjb9c3m8cbq0d8fljxsm49vfq3-nghttp2-1.68.1-dev
      /nix/store/762388ra9xjx2j8q4q1dipz183axz082-nghttp2-1.68.1-dev
      /nix/store/53kw7fmjflwpjbjd52jg1d4gdjldifnd-nghttp2-1.68.1-lib
      /nix/store/hms747x82q23p2g6r6kgzqf7li2ryk39-nghttp2-1.68.1-lib
      /nix/store/ni7mc01gwsdsdman8flmhmaxvxmfyy0r-nghttp2-1.68.1-lib
      /nix/store/133x0z91pizyk8zr4l2ccgqlclpkp1lj-nghttp3-1.15.0
      /nix/store/d2xhslm8a0b1lk0p4plmyip3i194znhy-nghttp3-1.15.0-dev
      /nix/store/g5sd94mk8w1a0wiipk81ri0prk136d32-ngtcp2-1.22.0
      /nix/store/yp754aaxmfqdag95053yax1fdaa4s9ck-ngtcp2-1.22.0-dev
      /nix/store/785jidgnryzj566s25s3rb262d4g5znb-nodejs-24.14.1
      /nix/store/7k1qfc90s1xk9dq1wim02jkwsjifmgs6-nodejs-24.14.1-source
      /nix/store/dp5hj389fvx601hgwa1kzxny1k1jz7dl-nodejs-install-executables
      /nix/store/k9mr745jn5c3r24cfacm7ls21sk1hil0-nodejs-install-manuals
      /nix/store/2bslrww4ch7my47xxwabj1qy4acq4720-nodejs-slim-24.14.1
      /nix/store/2xhh47awvfgslpm8fr66icvrwmjl0fia-nodejs-slim-24.14.1-corepack
      /nix/store/1d1cfwpg84gmfvjaf9nspdyj34cj5gg8-nodejs-slim-24.14.1-npm
      /nix/store/70j7ppw99prg7bqw9l3mg9m3mb361nar-npm-build-hook
      /nix/store/x9iv5gxv2knxzx7p8gh0l139hd4d73cl-npm-config-hook
      /nix/store/kzh21fzp2dlp8b2977b8dyy34vxvyz8s-npm-install-hook
      /nix/store/z8bp8277880269j9297qfycpl683p0ql-npth-1.8
      /nix/store/amjf7cch3hb5r6l646mwjhrr9384ks4s-nspr-4.38.2
      /nix/store/0wnl2h5xgy1q7bgkqdbiyzxnrq3cmigi-nss-3.112.3
      /nix/store/zp564phiicll8d53d973gbh8y3iiwlm7-nss-cacert-3.121
      /nix/store/8xlwd35bpmj7n6bzjwfnr6vidpwicjdd-numactl-2.0.18
      /nix/store/wyvwqxys4n5jn57mi67fhlv0fs5mmc17-ocl-icd-2.3.4
      /nix/store/ic9dmcfd2pbvvrd8sbw0h8x9mfb0wll0-oniguruma-6.9.10-lib
      /nix/store/2ahpi3w4gh6l039bs3ai7isv7ga4n0y6-openal-soft-1.24.3
      /nix/store/afscfpkv8md8avxbbv8yasx2wzgwv9ki-openapv-0.2.1.2
      /nix/store/r5r3l1l80wh8pxg49fhnry2kgr5b8bjk-openexr-3.3.8
      /nix/store/0k67iakk49mqs2302qclyaicw4sqhx6h-openfec-1.4.2.12
      /nix/store/vrplxb27i2vpa6kp0r177zk8gpk4gxis-openh264-2.6.0
      /nix/store/nrq3pjzsjd4w9vcpgk4a2wfjlqz4xxzw-openjpeg-2.5.4
      /nix/store/jn166h76cwg4aqq04dq5g0z88zm1znyx-openssl-3.6.1
      /nix/store/wbyqkb1vpm41s4jb8pv0i9h4jv08xdrv-openssl-3.6.1
      /nix/store/2di90l89y2ygdy3rbws7dhg9nrvd3pnx-openssl-3.6.1-bin
      /nix/store/v0nbb6d2amhxgvrvhd50klwa3szwb1zf-openssl-3.6.1-bin
      /nix/store/dy64cxaygvmjfznysgxk501yds8jij6s-openssl-3.6.1-dev
      /nix/store/q08a5gi8hk241j6i1qka64qcmjl93sdn-openssl-3.6.1-dev
      /nix/store/i97wd04w2z7amzxb5ivc0vkza932jz5a-opusfile-0.12
      /nix/store/1zwqln9dq4ra70fkb8vmc61yx2dcyqpc-orc-0.4.41
      /nix/store/bvn9b89zcvg86i08g4h00kkp5wnv7dfs-p11-kit-0.26.2
      /nix/store/w73ablb6d6j34k70h1m60lmdl7whnmik-pango-1.57.0
      /nix/store/vn77llca810az32d5nb0h0w7z92nrvqx-pango-1.57.0-bin
      /nix/store/kdsp5nlyl57gkjpjjqz95k82nyqix906-pango-1.57.0-dev
      /nix/store/zj7mxwji29zvj9vl70iip7gw4h6ljfam-patch-2.8
      /nix/store/66lksljlljdd5ppgvfk8g89y8xgqcxd7-patchelf-0.15.2
      /nix/store/jx13ah7k2zp0w21r2qncpdji93ylcncl-pciutils-3.14.0
      /nix/store/khhzkpj9169ydnyg7jjrjx7s5ygdkcas-pcre2-10.46
      /nix/store/ggnjxpakmyi3md87316vj0jg3lfib92n-pcsclite-2.4.1-lib
      /nix/store/xc6nj52vhg4ndmyxw7c5q6iqm8jzrwdm-perl-5.42.0
      /nix/store/9nryvpvnwawl348rdvhrrich4hk1j1gv-perl-5.42.0-env
      /nix/store/i89z4bx0m7frbm1wsxcwx5bfx9d8x3jb-perl-5.42.0-man
      /nix/store/awzycf8568ykfv6jl8dhclx06ksykafw-perl5.42.0-IO-Tty-1.20
      /nix/store/whr49vc1p0340hyv5jq2dgbclf3pg9fb-perl5.42.0-IPC-Run-20231003.0
      /nix/store/4m49ym03d370vczvzk73icl4hqzjq1wp-perl5.42.0-Time-Duration-1.21
      /nix/store/vqi3ldqzxfbchfjkrifwjiqgbd0xbi96-perl5.42.0-TimeDate-2.33
      /nix/store/zgm9m3g0if8lh3h222p8bf9vr1jx2g5b-pipewire-1.6.3
      /nix/store/hywlq1sf1prbyrhqwf2sbamazp1hghk1-pixman-0.46.4
      /nix/store/7whan4770j2xszy0ncpjkbbcjwxngr2i-pnpm-10.33.4
      /nix/store/absxz3ydrq3xdnr8f3m540sa11ymwam6-pnpm-config-hook
      /nix/store/lais75l158bp16yv5jhm8gfw2aixxq4s-popt-1.19
      /nix/store/qdnbv2yrbl3ld59ipdll2bw7x9fh6fzi-prefetch-npm-deps-0.1.0
      /nix/store/g6q58mbnmi0f05xpm9nfvfhq963yv7wv-publicsuffix-list-0-unstable-2026-03-26
      /nix/store/0r6k8xa2kgqyp3r4v2w7yrb80ma2iawm-python3-3.13.12
      /nix/store/ik25jz1pdnx5lxqgggv2lk22yx5dv23p-python3.13-argcomplete-3.6.3
      /nix/store/f1y75jrywiwiz99pzgnwz01kfsw8j3vp-python3.13-packaging-25.0
      /nix/store/jl0mxihyizv77l66mzbvmv49iiri72sd-python3.13-pyyaml-6.0.3
      /nix/store/p7vl56ywg6j1a9py4ivlwgb13nvbrd0v-python3.13-tomlkit-0.14.0
      /nix/store/8z5llxdsmk9jnz11215jppd8k6wwmkqv-python3.13-xmltodict-1.0.2
      /nix/store/z5lxllys0j3z200rf1phlzy975ynr0wg-python3.13-yq-3.4.3
      /nix/store/s9jsjmg9jkf8xpvbv01b64nqkcyxchj8-qrencode-4.1.1
      /nix/store/wgz9gypqk8f6pq9sn3bqh5964scksf9a-raptor2-2.0.16
      /nix/store/47h2ny0j1xbz879a9s7s55fyv3zawr3r-readline-8.3p3
      /nix/store/c2fac9k162g7pb470jlpc7ns3jd0ziyr-roc-toolkit-0.4.0
      /nix/store/02fsajsif8h2bb8z269p5ajfwric8zcw-rtmpdump-2.6
      /nix/store/zkbsxjfi5jfj6k8sm4qqa5nfg32zaas2-sbc-2.2
      /nix/store/jq7h17jc9cgh41qcippv8m319k1k9r55-serd-0.32.8
      /nix/store/by7j9pj785n9y8zv2xp7zv0w6ldc5cvb-shared-mime-info-2.4
      /nix/store/x0h231w78bnb7f28ha0qpk6mff9knaz2-simdjson-4.6.0
      /nix/store/7h3zzk8yssskfnrhhj0jffsa7qcpzik8-simdutf-6.5.0
      /nix/store/p9xsgqmzlxb3bkgbs05wbh1x7z73rs77-simdutf-8.1.0
      /nix/store/5902dqx5q1xd8f3kzqkihvshd43m1kjx-sord-0.16.20
      /nix/store/3vd6i8znzb1m7726br52kfgcxix2nslv-soundtouch-2.4.1
      /nix/store/9aj25gx4z6pihmcarms1l71v14xnsi96-sox-unstable-2021-05-09-lib
      /nix/store/lwr0grhbki9g9vwhik8l7s3aw4qhwd14-soxr-0.1.3
      /nix/store/qqxqc2mbd32y0scbg02pbxrr68nacs4y-spandsp-0.0.6
      /nix/store/2s3wqwjlj62hsbsip3m6k3i0c3b17s2b-speech-dispatcher-0.12.1
      /nix/store/40w7hnyr74glrfallwn7h7658pylk1ns-speex-1.2.1
      /nix/store/9vr9x4zwvqk8n7nvj1banq1ghdjiqrj0-speexdsp-1.2.1
      /nix/store/5087xk8l09k90gddzw8y9b4yypyn23a5-sqlite-3.51.2
      /nix/store/67cm7qx8s210dwkq64vqbf3q9z62ddyg-sqlite-3.51.2-bin
      /nix/store/jphqqkgn7swnppi4dgwxavd3fac51bvx-sqlite-3.51.2-dev
      /nix/store/fsazksvbi2h8av7xcr8n65jmmpxy5n3y-sratom-0.6.22
      /nix/store/rf6h509sjaagdr0d0ib6crwh82y69fqs-srt-1.5.4
      /nix/store/74ma22y9kdxjvvrrgz3q1dqnm8r4d99d-stdenv-linux
      /nix/store/w708nqm6lvvikrq8d3x45g96hzfij0r8-stdenv-linux
      /nix/store/aashrmrik71s10clwzrhqgwj3j1siwqq-svt-av1-3.1.2
      /nix/store/9rpism89x6lyjcwzzkp6kana25rs03nn-systemd-260.1
      /nix/store/574yk616w63vrqixip1b9f6ndd816xd9-systemd-minimal-260.1
      /nix/store/i3p4h70l0qq32lizw0i4px8afn1y7g8w-systemd-minimal-libs-260.1
      /nix/store/7by1ywk6g12ki95bz6m9kgx70cmxa7fz-tinysparql-3.10.1
      /nix/store/9m1jfsvl6lb4hdlf0av20m6rhcbw3s8h-tpm2-tss-4.1.3
      /nix/store/r61id90vslikv365pkfg7icwcw7xhbvm-tremor-unstable-2018-03-16
      /nix/store/cxjmhdbpy3bk12jc6lwpmcvlas76a7zm-tzdata-2026a
      /nix/store/88jjyvf8z5cw5hiix8ijd1qjd7jqsh2v-unbound-1.24.2-lib
      /nix/store/d728bq0ajg6r80j9avj2mn82h3alhl88-unzip-6.0
      /nix/store/9vv51km72lpngs6aixxplrr3c88q4c3c-update-autotools-gnu-config-scripts-hook
      /nix/store/0minj1ypl50k4zl85gsngfw0z0y9ddg0-util-linux-minimal-2.42
      /nix/store/291rd5nk7hkhcpzbh7pxqiz75xikdll3-util-linux-minimal-2.42-lib
      /nix/store/51i8gqxqi70c60mis05pyz85z87f6pkz-util-linux-minimal-2.42-login
      /nix/store/bq88bkx76z609nxa7851j39n4b619y7q-util-linux-minimal-2.42-mount
      /nix/store/9ypyz0im7mgjbzqx9hjwy4vjdfhfqc7d-util-linux-minimal-2.42-swap
      /nix/store/8vx4017b0nj6xqxi06c8zrddkhyyiwa4-uvwasi-0.0.23
      /nix/store/qj87i2v62w7yz7zlj6ls392yp6w13g0k-v4l-utils-1.32.0
      /nix/store/fknly1sp4y9qp5wg8pq90yc6nn9kwvq3-vid.stab-1.1.1-unstable-2025-08-21
      /nix/store/mq7pmzbiqjz3x13s2j7y2m0avaksr1d9-vo-aacenc-0.1.3
      /nix/store/zs7y2aadk71bawprdcn000az9y05s8nf-vulkan-loader-1.4.341.0
      /nix/store/dk9xsafvr6vhh8b28hbyq968aigm2m3f-wavpack-5.9.0
      /nix/store/ysbyz6zabjcg078ssp4l58mhgbr57pbz-wayland-1.24.0
      /nix/store/lzy227gr54781r8nwws22cw95rl3ji9k-wayland-1.24.0-dev
      /nix/store/w3ahgf2xpf3b67mg74n68xy0k1hq76fv-wayland-protocols-1.48
      /nix/store/kib53yn4av5vvkvjp2067jgv5z3qcb43-webrtc-audio-processing-1.3
      /nix/store/zgi77jarj1f80nhqppzaqy1m6vdz6dpf-webrtc-audio-processing-2.1
      /nix/store/ixki8yrq70inix4ghcldvr3v9qpxmxhl-wildmidi-0.4.6
      /nix/store/vgmzcfjx58pqihrsvvpk0g2ag53ahvqv-wildmidi.cfg
      /nix/store/2sa13c5wrww5v3kzjrjhgcfpni9rrj70-wrap-gapps-hook
      /nix/store/50d0sa775dqww34ap59s2kb5jb234qmn-writable-tmpdir-as-home-hook
      /nix/store/mj4sslc05hynx0f82lrc52gabx2ih7x3-x264-0-unstable-2025-01-03-lib
      /nix/store/xzawmlr1k8lykw57v9fqb0m4i0fazm0r-x265-4.1
      /nix/store/xx0z77494lfxr8qjwpck246fry05n3nm-xgcc-15.2.0-libgcc
      /nix/store/b6972i9717zsa71bxgmpjnnaqd0w1qsa-xkeyboard-config-2.47
      /nix/sto
    

Note: Report truncated to fit GitHub's 65536 character comment limit.
Full report in CI logs: https://github.com/Inrixia/TidaLuna/actions/runs/29301415865

np3ir added a commit to np3ir/TidaLuna that referenced this pull request Jul 14, 2026
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants