this derivation will be built: /nix/store/d2xhm4vnr8m4x9cp3895cwdyfjgwxm8g-format-check.drv building '/nix/store/d2xhm4vnr8m4x9cp3895cwdyfjgwxm8g-format-check.drv' format-check> traversed 498 files format-check> emitted 396 files for processing format-check> formatted 396 files (1 changed) in 6.836s format-check> diff --git a/packages/herdr/build.zig.zon.nix b/packages/herdr/build.zig.zon.nix format-check> index 1ca2810..be96782 100644 format-check> --- a/packages/herdr/build.zig.zon.nix format-check> +++ b/packages/herdr/build.zig.zon.nix format-check> @@ -9,52 +9,56 @@ format-check> zig_0_15, format-check> zstd, format-check> name ? "zig-packages", format-check> -}: let format-check> - unpackZigArtifact = { format-check> - name, format-check> - artifact, format-check> - }: format-check> - runCommandLocal name format-check> +}: format-check> +let format-check> + unpackZigArtifact = format-check> { format-check> - nativeBuildInputs = [zig_0_15]; format-check> - } format-check> - '' format-check> - hash="$(cd "$TMPDIR" && zig fetch --global-cache-dir "$TMPDIR" ${artifact})" format-check> - mv "$TMPDIR/p/$hash" "$out" format-check> - chmod 755 "$out" format-check> - ''; format-check> + name, format-check> + artifact, format-check> + }: format-check> + runCommandLocal name format-check> + { format-check> + nativeBuildInputs = [ zig_0_15 ]; format-check> + } format-check> + '' format-check> + hash="$(cd "$TMPDIR" && zig fetch --global-cache-dir "$TMPDIR" ${artifact})" format-check> + mv "$TMPDIR/p/$hash" "$out" format-check> + chmod 755 "$out" format-check> + ''; format-check> format-check> - fetchZig = { format-check> - name, format-check> - url, format-check> - hash, format-check> - unpack, format-check> - }: let format-check> - artifact = format-check> - if unpack format-check> - then format-check> - fetchzip { format-check> - inherit url hash; format-check> - nativeBuildInputs = [zstd]; format-check> - } format-check> - else fetchurl {inherit url hash;}; format-check> - in format-check> - unpackZigArtifact {inherit name artifact;}; format-check> + fetchZig = format-check> + { format-check> + name, format-check> + url, format-check> + hash, format-check> + unpack, format-check> + }: format-check> + let format-check> + artifact = format-check> + if unpack then format-check> + fetchzip { format-check> + inherit url hash; format-check> + nativeBuildInputs = [ zstd ]; format-check> + } format-check> + else format-check> + fetchurl { inherit url hash; }; format-check> + in format-check> + unpackZigArtifact { inherit name artifact; }; format-check> format-check> - fetchGitZig = { format-check> - name, format-check> - url, format-check> - hash, format-check> - }: let format-check> - parts = lib.splitString "#" url; format-check> - url_base = builtins.elemAt parts 0; format-check> - url_without_query = builtins.elemAt (lib.splitString "?" url_base) 0; format-check> - rev_base = builtins.elemAt parts 1; format-check> - rev = format-check> - if builtins.match "^[a-fA-F0-9]{40}$" rev_base != null format-check> - then rev_base format-check> - else "refs/heads/${rev_base}"; format-check> - in format-check> + fetchGitZig = format-check> + { format-check> + name, format-check> + url, format-check> + hash, format-check> + }: format-check> + let format-check> + parts = lib.splitString "#" url; format-check> + url_base = builtins.elemAt parts 0; format-check> + url_without_query = builtins.elemAt (lib.splitString "?" url_base) 0; format-check> + rev_base = builtins.elemAt parts 1; format-check> + rev = format-check> + if builtins.match "^[a-fA-F0-9]{40}$" rev_base != null then rev_base else "refs/heads/${rev_base}"; format-check> + in format-check> fetchgit { format-check> inherit name rev hash; format-check> url = url_without_query; format-check> @@ -62,359 +66,361 @@ format-check> fetchSubmodules = false; format-check> }; format-check> format-check> - fetchZigArtifact = { format-check> - name, format-check> - url, format-check> - hash, format-check> - unpack, format-check> - }: let format-check> - parts = lib.splitString "://" url; format-check> - proto = builtins.elemAt parts 0; format-check> - path = builtins.elemAt parts 1; format-check> - fetcher = { format-check> - "git+http" = fetchGitZig { format-check> - inherit name hash; format-check> - url = "http://${path}"; format-check> - }; format-check> - "git+https" = fetchGitZig { format-check> - inherit name hash; format-check> - url = "https://${path}"; format-check> - }; format-check> - http = fetchZig { format-check> - inherit name hash unpack; format-check> - url = "http://${path}"; format-check> - }; format-check> - https = fetchZig { format-check> - inherit name hash unpack; format-check> - url = "https://${path}"; format-check> - }; format-check> - }; format-check> - in format-check> + fetchZigArtifact = format-check> + { format-check> + name, format-check> + url, format-check> + hash, format-check> + unpack, format-check> + }: format-check> + let format-check> + parts = lib.splitString "://" url; format-check> + proto = builtins.elemAt parts 0; format-check> + path = builtins.elemAt parts 1; format-check> + fetcher = { format-check> + "git+http" = fetchGitZig { format-check> + inherit name hash; format-check> + url = "http://${path}"; format-check> + }; format-check> + "git+https" = fetchGitZig { format-check> + inherit name hash; format-check> + url = "https://${path}"; format-check> + }; format-check> + http = fetchZig { format-check> + inherit name hash unpack; format-check> + url = "http://${path}"; format-check> + }; format-check> + https = fetchZig { format-check> + inherit name hash unpack; format-check> + url = "https://${path}"; format-check> + }; format-check> + }; format-check> + in format-check> fetcher.${proto}; format-check> in format-check> - linkFarm name [ format-check> - { format-check> - name = "N-V-__8AANT61wB--nJ95Gj_ctmzAtcjloZ__hRqNw5lC1Kr"; format-check> - path = fetchZigArtifact { format-check> - name = "bindings"; format-check> - url = "https://deps.files.ghostty.org/DearBindings_v0.17_ImGui_v1.92.5-docking.tar.gz"; format-check> - hash = "sha256-i/7FAOAJJvZ5hT7iPWfMOS08MYFzPKRwRzhlHT9wuqM="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AALw2uwF_03u4JRkZwRLc3Y9hakkYV7NKRR9-RIZJ"; format-check> - path = fetchZigArtifact { format-check> - name = "breakpad"; format-check> - url = "https://deps.files.ghostty.org/breakpad-b99f444ba5f6b98cac261cbb391d8766b34a5918.tar.gz"; format-check> - hash = "sha256-bMqYlD0amQdmzvYQd8Ca/1k4Bj/heh7+EijlQSttatk="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAIrfdwARSa-zMmxWwFuwpXf1T3asIN7s5jqi9c1v"; format-check> - path = fetchZigArtifact { format-check> - name = "fontconfig"; format-check> - url = "https://deps.files.ghostty.org/fontconfig-2.14.2.tar.gz"; format-check> - hash = "sha256-O6LdkhWHGKzsXKrxpxYEO1qgVcJ7CB2RSvPMtA3OilU="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAKLKpwC4H27Ps_0iL3bPkQb-z6ZVSrB-x_3EEkub"; format-check> - path = fetchZigArtifact { format-check> - name = "freetype"; format-check> - url = "https://deps.files.ghostty.org/freetype-1220b81f6ecfb3fd222f76cf9106fecfa6554ab07ec7fdc4124b9bb063ae2adf969d.tar.gz"; format-check> - hash = "sha256-QnIB9dUVFnDQXB9bRb713aHy592XHvVPD+qqf/0quQw="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AADcZkgn4cMhTUpIz6mShCKyqqB-NBtf_S2bHaTC-"; format-check> - path = fetchZigArtifact { format-check> - name = "gettext"; format-check> - url = "https://deps.files.ghostty.org/gettext-0.24.tar.gz"; format-check> - hash = "sha256-yRhQPVk9cNr0hE0XWhPYFq+stmfAb7oeydzVACwVGLc="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AABzkUgISeKGgXAzgtutgJsZc0-kkeqBBscJgMkvy"; format-check> - path = fetchZigArtifact { format-check> - name = "glslang"; format-check> - url = "https://deps.files.ghostty.org/glslang-12201278a1a05c0ce0b6eb6026c65cd3e9247aa041b1c260324bf29cee559dd23ba1.tar.gz"; format-check> - hash = "sha256-FKLtu1Ccs+UamlPj9eQ12/WXFgS0uDPmPmB26MCpl7U="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "gobject-0.3.0-Skun7ANLnwDvEfIpVmohcppXgOvg_I6YOJFmPIsKfXk-"; format-check> - path = fetchZigArtifact { format-check> - name = "gobject"; format-check> - url = "https://deps.files.ghostty.org/gobject-2025-11-08-23-1.tar.zst"; format-check> - hash = "sha256-OxS9/XC5aMJj1KhOcFP1ZZN7PI4ADw4f7ocx6V64mOc="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AALiNBAA-_0gprYr92CjrMj1I5bqNu0TSJOnjFNSr"; format-check> - path = fetchZigArtifact { format-check> - name = "gtk4_layer_shell"; format-check> - url = "https://deps.files.ghostty.org/gtk4-layer-shell-1.1.0.tar.gz"; format-check> - hash = "sha256-mChCgSYKXu9bT2OlXxbEv2p4ihAgptsDfssPcfozaYg="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAG02ugUcWec-Ndp-i7JTsJ0dgF8nnJRUInkGLG7G"; format-check> - path = fetchZigArtifact { format-check> - name = "harfbuzz"; format-check> - url = "https://deps.files.ghostty.org/harfbuzz-11.0.0.tar.xz"; format-check> - hash = "sha256-8WNRuv4hRyX+LB1bWfDZPkmQWkskeJn7kNcM/5U6K5s="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAGmZhABbsPJLfbqrh6JTHsXhY6qCaLAQyx25e0XE"; format-check> - path = fetchZigArtifact { format-check> - name = "highway"; format-check> - url = "https://deps.files.ghostty.org/highway-66486a10623fa0d72fe91260f96c892e41aceb06.tar.gz"; format-check> - hash = "sha256-h9T4iT704I8iSXNgj/6/lCaKgTgLp5wS6IQZaMgKohI="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAEbOfQBnvcFcCX2W5z7tDaN8vaNZGamEQtNOe0UI"; format-check> - path = fetchZigArtifact { format-check> - name = "imgui"; format-check> - url = "https://github.com/ocornut/imgui/archive/refs/tags/v1.92.5-docking.tar.gz"; format-check> - hash = "sha256-yBbCDox18+Fa6Gc1DnmSVQLRpqhZOLsac7iSfl8x+cs="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAPy1AwDnEoq1ww42uq58nusIeQgR16W4-5SQZFIM"; format-check> - path = fetchZigArtifact { format-check> - name = "iterm2_themes"; format-check> - url = "https://deps.files.ghostty.org/ghostty-themes-release-20260511-160054-2671288.tgz"; format-check> - hash = "sha256-R2NJUKxz2LHRiCBi/MAnN3XzMyY4VWlbX0uWCbWefjQ="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAIC5lwAVPJJzxnCAahSvZTIlG-HhtOvnM1uh-66x"; format-check> - path = fetchZigArtifact { format-check> - name = "jetbrains_mono"; format-check> - url = "https://deps.files.ghostty.org/JetBrainsMono-2.304.tar.gz"; format-check> - hash = "sha256-xXppHouCrQmLWWPzlZAy5AOPORCHr3cViFulkEYQXMQ="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAJrvXQCqAT8Mg9o_tk6m0yf5Fz-gCNEOKLyTSerD"; format-check> - path = fetchZigArtifact { format-check> - name = "libpng"; format-check> - url = "https://deps.files.ghostty.org/libpng-1220aa013f0c83da3fb64ea6d327f9173fa008d10e28bc9349eac3463457723b1c66.tar.gz"; format-check> - hash = "sha256-/syVtGzwXo4/yKQUdQ4LparQDYnp/fF16U/wQcrxoDo="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "libxev-0.0.0-86vtc4IcEwCqEYxEYoN_3KXmc6A9VLcm22aVImfvecYs"; format-check> - path = fetchZigArtifact { format-check> - name = "libxev"; format-check> - url = "https://deps.files.ghostty.org/libxev-34fa50878aec6e5fa8f532867001ab3c36fae23e.tar.gz"; format-check> - hash = "sha256-1B9oJExVyOWRj+Y9d9eHkOBTlOYuEkcwGBUKdlgRhkg="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAG3RoQEyRC2Vw7Qoro5SYBf62IHn3HjqtNVY6aWK"; format-check> - path = fetchZigArtifact { format-check> - name = "libxml2"; format-check> - url = "https://deps.files.ghostty.org/libxml2-2.11.5.tar.gz"; format-check> - hash = "sha256-bCgFni4+60K1tLFkieORamNGwQladP7jvGXNxdiaYhU="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAMVLTABmYkLqhZPLXnMl-KyN38R8UVYqGrxqO26s"; format-check> - path = fetchZigArtifact { format-check> - name = "nerd_fonts_symbols_only"; format-check> - url = "https://deps.files.ghostty.org/NerdFontsSymbolsOnly-3.4.0.tar.gz"; format-check> - hash = "sha256-EWTRuVbUveJI17LwmYxDzJT1ICQxoVZKeTiVsec7DQQ="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAHjwMQDBXnLq3Q2QhaivE0kE2aD138vtX2Bq1g7c"; format-check> - path = fetchZigArtifact { format-check> - name = "oniguruma"; format-check> - url = "https://deps.files.ghostty.org/oniguruma-1220c15e72eadd0d9085a8af134904d9a0f5dfcbed5f606ad60edc60ebeccd9706bb.tar.gz"; format-check> - hash = "sha256-ABqhIC54RI9MC/GkjHblVodrNvFtks4yB+zP1h2Z8qA="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AADYiAAB_80AWnH1AxXC0tql9thT-R-DYO1gBqTLc"; format-check> - path = fetchZigArtifact { format-check> - name = "pixels"; format-check> - url = "https://deps.files.ghostty.org/pixels-12207ff340169c7d40c570b4b6a97db614fe47e0d83b5801a932dcd44917424c8806.tar.gz"; format-check> - hash = "sha256-Veg7FtCRCCUCvxSb9FfzH0IJLFmCZQ4/+657SIcb8Ro="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAKYZBAB-CFHBKs3u4JkeiT4BMvyHu3Y5aaWF3Bbs"; format-check> - path = fetchZigArtifact { format-check> - name = "plasma_wayland_protocols"; format-check> - url = "https://deps.files.ghostty.org/plasma_wayland_protocols-12207e0851c12acdeee0991e893e0132fc87bb763969a585dc16ecca33e88334c566.tar.gz"; format-check> - hash = "sha256-XFi6IUrNjmvKNCbcCLAixGqN2Zeymhs+KLrfccIN9EE="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAPlZGwBEa-gxrcypGBZ2R8Bse4JYSfo_ul8i2jlG"; format-check> - path = fetchZigArtifact { format-check> - name = "sentry"; format-check> - url = "https://deps.files.ghostty.org/sentry-1220446be831adcca918167647c06c7b825849fa3fba5f22da394667974537a9c77e.tar.gz"; format-check> - hash = "sha256-KsZJfMjWGo0xCT5HrduMmyxFsWsHBbszSoNbZCPDGN8="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AANb6pwD7O1WG6L5nvD_rNMvnSc9Cpg1ijSlTYywv"; format-check> - path = fetchZigArtifact { format-check> - name = "spirv_cross"; format-check> - url = "https://deps.files.ghostty.org/spirv_cross-1220fb3b5586e8be67bc3feb34cbe749cf42a60d628d2953632c2f8141302748c8da.tar.gz"; format-check> - hash = "sha256-tStvz8Ref6abHwahNiwVVHNETizAmZVVaxVsU7pmV+M="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM"; format-check> - path = fetchZigArtifact { format-check> - name = "uucode"; format-check> - url = "git+https://github.com/jacobsandlund/uucode#5f05f8f83a75caea201f12cc8ea32a2d82ea9732"; format-check> - hash = "sha256-sHPh+TQSdUGus/QTbj7KSJJkTuNTrK4VNmQDjS30Lf8="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "uucode-0.2.0-ZZjBPqZVVABQepOqZHR7vV_NcaN-wats0IB6o-Exj6m9"; format-check> - path = fetchZigArtifact { format-check> - name = "uucode"; format-check> - url = "https://deps.files.ghostty.org/uucode-0.2.0-ZZjBPqZVVABQepOqZHR7vV_NcaN-wats0IB6o-Exj6m9.tar.gz"; format-check> - hash = "sha256-jLrhrmCXQ1T+LQP1JTBBB3Jn+1hCZfODbC4SdlfNdKg="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "vaxis-0.5.1-BWNV_LosCQAGmCCNOLljCIw6j6-yt53tji6n6rwJ2BhS"; format-check> - path = fetchZigArtifact { format-check> - name = "vaxis"; format-check> - url = "https://deps.files.ghostty.org/vaxis-7dbb9fd3122e4ffad262dd7c151d80d863b68558.tar.gz"; format-check> - hash = "sha256-zTyrZrIffM+GJIt973tKDeWHmOCwbn7KLDdQxSiK00Y="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAKrHGAAs2shYq8UkE6bGcR1QJtLTyOE_lcosMn6t"; format-check> - path = fetchZigArtifact { format-check> - name = "wayland"; format-check> - url = "https://deps.files.ghostty.org/wayland-9cb3d7aa9dc995ffafdbdef7ab86a949d0fb0e7d.tar.gz"; format-check> - hash = "sha256-6kGR1o5DdnflHzqs3ieCmBAUTpMdOXoyfcYDXiw5xQ0="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAKw-DAAaV8bOAAGqA0-oD7o-HNIlPFYKRXSPT03S"; format-check> - path = fetchZigArtifact { format-check> - name = "wayland_protocols"; format-check> - url = "https://deps.files.ghostty.org/wayland-protocols-258d8f88f2c8c25a830c6316f87d23ce1a0f12d9.tar.gz"; format-check> - hash = "sha256-XO3K3egbdeYPI+XoO13SuOtO+5+Peb16NH0UiusFMPg="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAFdWDwA0ktbNUi9pFBHCRN4weXIgIfCrVjfGxqgA"; format-check> - path = fetchZigArtifact { format-check> - name = "wayland_protocols"; format-check> - url = "https://gitlab.freedesktop.org/wayland/wayland-protocols/-/archive/1.47/wayland-protocols-1.47.tar.gz"; format-check> - hash = "sha256-3S3xSrX0EDgleq7cxLX7msDuAY8/D5SvkJcCjmDTMiM="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAAzZywE3s51XfsLbP9eyEw57ae9swYB9aGB6fCMs"; format-check> - path = fetchZigArtifact { format-check> - name = "wuffs"; format-check> - url = "https://deps.files.ghostty.org/wuffs-122037b39d577ec2db3fd7b2130e7b69ef6cc1807d68607a7c232c958315d381b5cd.tar.gz"; format-check> - hash = "sha256-nkzSCr6W5sTG7enDBXEIhgEm574uLD41UVR2wlC+HBM="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - { format-check> - name = "z2d-0.10.0-j5P_Hu-6FgBsZNgwphIqh17jDnj8_yPtD8yzjO6PpHRQ"; format-check> - path = fetchZigArtifact { format-check> - name = "z2d"; format-check> - url = "https://deps.files.ghostty.org/z2d-0.10.0-j5P_Hu-6FgBsZNgwphIqh17jDnj8_yPtD8yzjO6PpHRQ.tar.gz"; format-check> - hash = "sha256-qD+XexnAjSanRAwr5ZIaPY1aQhNW5DFVJ4PYLwhIr2E="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "zf-0.10.3-OIRy8RuJAACKA3Lohoumrt85nRbHwbpMcUaLES8vxDnh"; format-check> - path = fetchZigArtifact { format-check> - name = "zf"; format-check> - url = "https://deps.files.ghostty.org/zf-3c52637b7e937c5ae61fd679717da3e276765b23.tar.gz"; format-check> - hash = "sha256-BfAZILill3I/nBf1oWwol77N34Jcpm4hudC+XSeMgZY="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "zig_js-0.0.0-rjCAV-6GAADxFug7rDmPH-uM_XcnJ5NmuAMJCAscMjhi"; format-check> - path = fetchZigArtifact { format-check> - name = "zig_js"; format-check> - url = "https://deps.files.ghostty.org/zig_js-04db83c617da1956ac5adc1cb9ba1e434c1cb6fd.tar.gz"; format-check> - hash = "sha256-r6GdXwrv+jTu0AkTlyN/FuO+N4X+l20gsbS59wrE7V4="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "zig_objc-0.0.0-Ir_Sp5gTAQCvxxR7oVIrPXxXwsfKgVP7_wqoOQrZjFeK"; format-check> - path = fetchZigArtifact { format-check> - name = "zig_objc"; format-check> - url = "https://deps.files.ghostty.org/zig_objc-f356ed02833f0f1b8e84d50bed9e807bf7cdc0ae.tar.gz"; format-check> - hash = "sha256-jWFQ5BrV880qqa9KypltWuRLqNSh21rDxt6Jxp0EoMM="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "wayland-0.5.0-dev-lQa1khrMAQDJDwYFKpdH3HizherB7sHo5dKMECfvxQHe"; format-check> - path = fetchZigArtifact { format-check> - name = "zig_wayland"; format-check> - url = "https://deps.files.ghostty.org/zig_wayland-1b5c038ec10da20ed3a15b0b2a6db1c21383e8ea.tar.gz"; format-check> - hash = "sha256-1wRkixysjdFMyrATxlXdukAc34MwfNj0B6ydYVn+UKw="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "zigimg-0.1.0-8_eo2vHnEwCIVW34Q14Ec-xUlzIoVg86-7FU2ypPtxms"; format-check> - path = fetchZigArtifact { format-check> - name = "zigimg"; format-check> - url = "https://github.com/ivanstepanovftw/zigimg/archive/d7b7ab0ba0899643831ef042bd73289510b39906.tar.gz"; format-check> - hash = "sha256-vkcTloGX+vRw7e6GYJLO9eocYaEOYjXYE0dT7jscZ4A="; format-check> - unpack = true; format-check> - }; format-check> - } format-check> - { format-check> - name = "N-V-__8AAB0eQwD-0MdOEBmz7intriBReIsIDNlukNVoNu6o"; format-check> - path = fetchZigArtifact { format-check> - name = "zlib"; format-check> - url = "https://deps.files.ghostty.org/zlib-1220fed0c74e1019b3ee29edae2051788b080cd96e90d56836eea857b0b966742efb.tar.gz"; format-check> - hash = "sha256-F+iIY/NgBnKrSRgvIXKBtvxNPHYr3jYZNeQ2qVIU0Fw="; format-check> - unpack = false; format-check> - }; format-check> - } format-check> - ] format-check> +linkFarm name [ format-check> + { format-check> + name = "N-V-__8AANT61wB--nJ95Gj_ctmzAtcjloZ__hRqNw5lC1Kr"; format-check> + path = fetchZigArtifact { format-check> + name = "bindings"; format-check> + url = "https://deps.files.ghostty.org/DearBindings_v0.17_ImGui_v1.92.5-docking.tar.gz"; format-check> + hash = "sha256-i/7FAOAJJvZ5hT7iPWfMOS08MYFzPKRwRzhlHT9wuqM="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AALw2uwF_03u4JRkZwRLc3Y9hakkYV7NKRR9-RIZJ"; format-check> + path = fetchZigArtifact { format-check> + name = "breakpad"; format-check> + url = "https://deps.files.ghostty.org/breakpad-b99f444ba5f6b98cac261cbb391d8766b34a5918.tar.gz"; format-check> + hash = "sha256-bMqYlD0amQdmzvYQd8Ca/1k4Bj/heh7+EijlQSttatk="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAIrfdwARSa-zMmxWwFuwpXf1T3asIN7s5jqi9c1v"; format-check> + path = fetchZigArtifact { format-check> + name = "fontconfig"; format-check> + url = "https://deps.files.ghostty.org/fontconfig-2.14.2.tar.gz"; format-check> + hash = "sha256-O6LdkhWHGKzsXKrxpxYEO1qgVcJ7CB2RSvPMtA3OilU="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAKLKpwC4H27Ps_0iL3bPkQb-z6ZVSrB-x_3EEkub"; format-check> + path = fetchZigArtifact { format-check> + name = "freetype"; format-check> + url = "https://deps.files.ghostty.org/freetype-1220b81f6ecfb3fd222f76cf9106fecfa6554ab07ec7fdc4124b9bb063ae2adf969d.tar.gz"; format-check> + hash = "sha256-QnIB9dUVFnDQXB9bRb713aHy592XHvVPD+qqf/0quQw="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AADcZkgn4cMhTUpIz6mShCKyqqB-NBtf_S2bHaTC-"; format-check> + path = fetchZigArtifact { format-check> + name = "gettext"; format-check> + url = "https://deps.files.ghostty.org/gettext-0.24.tar.gz"; format-check> + hash = "sha256-yRhQPVk9cNr0hE0XWhPYFq+stmfAb7oeydzVACwVGLc="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AABzkUgISeKGgXAzgtutgJsZc0-kkeqBBscJgMkvy"; format-check> + path = fetchZigArtifact { format-check> + name = "glslang"; format-check> + url = "https://deps.files.ghostty.org/glslang-12201278a1a05c0ce0b6eb6026c65cd3e9247aa041b1c260324bf29cee559dd23ba1.tar.gz"; format-check> + hash = "sha256-FKLtu1Ccs+UamlPj9eQ12/WXFgS0uDPmPmB26MCpl7U="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "gobject-0.3.0-Skun7ANLnwDvEfIpVmohcppXgOvg_I6YOJFmPIsKfXk-"; format-check> + path = fetchZigArtifact { format-check> + name = "gobject"; format-check> + url = "https://deps.files.ghostty.org/gobject-2025-11-08-23-1.tar.zst"; format-check> + hash = "sha256-OxS9/XC5aMJj1KhOcFP1ZZN7PI4ADw4f7ocx6V64mOc="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AALiNBAA-_0gprYr92CjrMj1I5bqNu0TSJOnjFNSr"; format-check> + path = fetchZigArtifact { format-check> + name = "gtk4_layer_shell"; format-check> + url = "https://deps.files.ghostty.org/gtk4-layer-shell-1.1.0.tar.gz"; format-check> + hash = "sha256-mChCgSYKXu9bT2OlXxbEv2p4ihAgptsDfssPcfozaYg="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAG02ugUcWec-Ndp-i7JTsJ0dgF8nnJRUInkGLG7G"; format-check> + path = fetchZigArtifact { format-check> + name = "harfbuzz"; format-check> + url = "https://deps.files.ghostty.org/harfbuzz-11.0.0.tar.xz"; format-check> + hash = "sha256-8WNRuv4hRyX+LB1bWfDZPkmQWkskeJn7kNcM/5U6K5s="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAGmZhABbsPJLfbqrh6JTHsXhY6qCaLAQyx25e0XE"; format-check> + path = fetchZigArtifact { format-check> + name = "highway"; format-check> + url = "https://deps.files.ghostty.org/highway-66486a10623fa0d72fe91260f96c892e41aceb06.tar.gz"; format-check> + hash = "sha256-h9T4iT704I8iSXNgj/6/lCaKgTgLp5wS6IQZaMgKohI="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAEbOfQBnvcFcCX2W5z7tDaN8vaNZGamEQtNOe0UI"; format-check> + path = fetchZigArtifact { format-check> + name = "imgui"; format-check> + url = "https://github.com/ocornut/imgui/archive/refs/tags/v1.92.5-docking.tar.gz"; format-check> + hash = "sha256-yBbCDox18+Fa6Gc1DnmSVQLRpqhZOLsac7iSfl8x+cs="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAPy1AwDnEoq1ww42uq58nusIeQgR16W4-5SQZFIM"; format-check> + path = fetchZigArtifact { format-check> + name = "iterm2_themes"; format-check> + url = "https://deps.files.ghostty.org/ghostty-themes-release-20260511-160054-2671288.tgz"; format-check> + hash = "sha256-R2NJUKxz2LHRiCBi/MAnN3XzMyY4VWlbX0uWCbWefjQ="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAIC5lwAVPJJzxnCAahSvZTIlG-HhtOvnM1uh-66x"; format-check> + path = fetchZigArtifact { format-check> + name = "jetbrains_mono"; format-check> + url = "https://deps.files.ghostty.org/JetBrainsMono-2.304.tar.gz"; format-check> + hash = "sha256-xXppHouCrQmLWWPzlZAy5AOPORCHr3cViFulkEYQXMQ="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAJrvXQCqAT8Mg9o_tk6m0yf5Fz-gCNEOKLyTSerD"; format-check> + path = fetchZigArtifact { format-check> + name = "libpng"; format-check> + url = "https://deps.files.ghostty.org/libpng-1220aa013f0c83da3fb64ea6d327f9173fa008d10e28bc9349eac3463457723b1c66.tar.gz"; format-check> + hash = "sha256-/syVtGzwXo4/yKQUdQ4LparQDYnp/fF16U/wQcrxoDo="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "libxev-0.0.0-86vtc4IcEwCqEYxEYoN_3KXmc6A9VLcm22aVImfvecYs"; format-check> + path = fetchZigArtifact { format-check> + name = "libxev"; format-check> + url = "https://deps.files.ghostty.org/libxev-34fa50878aec6e5fa8f532867001ab3c36fae23e.tar.gz"; format-check> + hash = "sha256-1B9oJExVyOWRj+Y9d9eHkOBTlOYuEkcwGBUKdlgRhkg="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAG3RoQEyRC2Vw7Qoro5SYBf62IHn3HjqtNVY6aWK"; format-check> + path = fetchZigArtifact { format-check> + name = "libxml2"; format-check> + url = "https://deps.files.ghostty.org/libxml2-2.11.5.tar.gz"; format-check> + hash = "sha256-bCgFni4+60K1tLFkieORamNGwQladP7jvGXNxdiaYhU="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAMVLTABmYkLqhZPLXnMl-KyN38R8UVYqGrxqO26s"; format-check> + path = fetchZigArtifact { format-check> + name = "nerd_fonts_symbols_only"; format-check> + url = "https://deps.files.ghostty.org/NerdFontsSymbolsOnly-3.4.0.tar.gz"; format-check> + hash = "sha256-EWTRuVbUveJI17LwmYxDzJT1ICQxoVZKeTiVsec7DQQ="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAHjwMQDBXnLq3Q2QhaivE0kE2aD138vtX2Bq1g7c"; format-check> + path = fetchZigArtifact { format-check> + name = "oniguruma"; format-check> + url = "https://deps.files.ghostty.org/oniguruma-1220c15e72eadd0d9085a8af134904d9a0f5dfcbed5f606ad60edc60ebeccd9706bb.tar.gz"; format-check> + hash = "sha256-ABqhIC54RI9MC/GkjHblVodrNvFtks4yB+zP1h2Z8qA="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AADYiAAB_80AWnH1AxXC0tql9thT-R-DYO1gBqTLc"; format-check> + path = fetchZigArtifact { format-check> + name = "pixels"; format-check> + url = "https://deps.files.ghostty.org/pixels-12207ff340169c7d40c570b4b6a97db614fe47e0d83b5801a932dcd44917424c8806.tar.gz"; format-check> + hash = "sha256-Veg7FtCRCCUCvxSb9FfzH0IJLFmCZQ4/+657SIcb8Ro="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAKYZBAB-CFHBKs3u4JkeiT4BMvyHu3Y5aaWF3Bbs"; format-check> + path = fetchZigArtifact { format-check> + name = "plasma_wayland_protocols"; format-check> + url = "https://deps.files.ghostty.org/plasma_wayland_protocols-12207e0851c12acdeee0991e893e0132fc87bb763969a585dc16ecca33e88334c566.tar.gz"; format-check> + hash = "sha256-XFi6IUrNjmvKNCbcCLAixGqN2Zeymhs+KLrfccIN9EE="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAPlZGwBEa-gxrcypGBZ2R8Bse4JYSfo_ul8i2jlG"; format-check> + path = fetchZigArtifact { format-check> + name = "sentry"; format-check> + url = "https://deps.files.ghostty.org/sentry-1220446be831adcca918167647c06c7b825849fa3fba5f22da394667974537a9c77e.tar.gz"; format-check> + hash = "sha256-KsZJfMjWGo0xCT5HrduMmyxFsWsHBbszSoNbZCPDGN8="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AANb6pwD7O1WG6L5nvD_rNMvnSc9Cpg1ijSlTYywv"; format-check> + path = fetchZigArtifact { format-check> + name = "spirv_cross"; format-check> + url = "https://deps.files.ghostty.org/spirv_cross-1220fb3b5586e8be67bc3feb34cbe749cf42a60d628d2953632c2f8141302748c8da.tar.gz"; format-check> + hash = "sha256-tStvz8Ref6abHwahNiwVVHNETizAmZVVaxVsU7pmV+M="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "uucode-0.1.0-ZZjBPj96QADXyt5sqwBJUnhaDYs_qBeeKijZvlRa0eqM"; format-check> + path = fetchZigArtifact { format-check> + name = "uucode"; format-check> + url = "git+https://github.com/jacobsandlund/uucode#5f05f8f83a75caea201f12cc8ea32a2d82ea9732"; format-check> + hash = "sha256-sHPh+TQSdUGus/QTbj7KSJJkTuNTrK4VNmQDjS30Lf8="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "uucode-0.2.0-ZZjBPqZVVABQepOqZHR7vV_NcaN-wats0IB6o-Exj6m9"; format-check> + path = fetchZigArtifact { format-check> + name = "uucode"; format-check> + url = "https://deps.files.ghostty.org/uucode-0.2.0-ZZjBPqZVVABQepOqZHR7vV_NcaN-wats0IB6o-Exj6m9.tar.gz"; format-check> + hash = "sha256-jLrhrmCXQ1T+LQP1JTBBB3Jn+1hCZfODbC4SdlfNdKg="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "vaxis-0.5.1-BWNV_LosCQAGmCCNOLljCIw6j6-yt53tji6n6rwJ2BhS"; format-check> + path = fetchZigArtifact { format-check> + name = "vaxis"; format-check> + url = "https://deps.files.ghostty.org/vaxis-7dbb9fd3122e4ffad262dd7c151d80d863b68558.tar.gz"; format-check> + hash = "sha256-zTyrZrIffM+GJIt973tKDeWHmOCwbn7KLDdQxSiK00Y="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAKrHGAAs2shYq8UkE6bGcR1QJtLTyOE_lcosMn6t"; format-check> + path = fetchZigArtifact { format-check> + name = "wayland"; format-check> + url = "https://deps.files.ghostty.org/wayland-9cb3d7aa9dc995ffafdbdef7ab86a949d0fb0e7d.tar.gz"; format-check> + hash = "sha256-6kGR1o5DdnflHzqs3ieCmBAUTpMdOXoyfcYDXiw5xQ0="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAKw-DAAaV8bOAAGqA0-oD7o-HNIlPFYKRXSPT03S"; format-check> + path = fetchZigArtifact { format-check> + name = "wayland_protocols"; format-check> + url = "https://deps.files.ghostty.org/wayland-protocols-258d8f88f2c8c25a830c6316f87d23ce1a0f12d9.tar.gz"; format-check> + hash = "sha256-XO3K3egbdeYPI+XoO13SuOtO+5+Peb16NH0UiusFMPg="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAFdWDwA0ktbNUi9pFBHCRN4weXIgIfCrVjfGxqgA"; format-check> + path = fetchZigArtifact { format-check> + name = "wayland_protocols"; format-check> + url = "https://gitlab.freedesktop.org/wayland/wayland-protocols/-/archive/1.47/wayland-protocols-1.47.tar.gz"; format-check> + hash = "sha256-3S3xSrX0EDgleq7cxLX7msDuAY8/D5SvkJcCjmDTMiM="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAAzZywE3s51XfsLbP9eyEw57ae9swYB9aGB6fCMs"; format-check> + path = fetchZigArtifact { format-check> + name = "wuffs"; format-check> + url = "https://deps.files.ghostty.org/wuffs-122037b39d577ec2db3fd7b2130e7b69ef6cc1807d68607a7c232c958315d381b5cd.tar.gz"; format-check> + hash = "sha256-nkzSCr6W5sTG7enDBXEIhgEm574uLD41UVR2wlC+HBM="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> + { format-check> + name = "z2d-0.10.0-j5P_Hu-6FgBsZNgwphIqh17jDnj8_yPtD8yzjO6PpHRQ"; format-check> + path = fetchZigArtifact { format-check> + name = "z2d"; format-check> + url = "https://deps.files.ghostty.org/z2d-0.10.0-j5P_Hu-6FgBsZNgwphIqh17jDnj8_yPtD8yzjO6PpHRQ.tar.gz"; format-check> + hash = "sha256-qD+XexnAjSanRAwr5ZIaPY1aQhNW5DFVJ4PYLwhIr2E="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "zf-0.10.3-OIRy8RuJAACKA3Lohoumrt85nRbHwbpMcUaLES8vxDnh"; format-check> + path = fetchZigArtifact { format-check> + name = "zf"; format-check> + url = "https://deps.files.ghostty.org/zf-3c52637b7e937c5ae61fd679717da3e276765b23.tar.gz"; format-check> + hash = "sha256-BfAZILill3I/nBf1oWwol77N34Jcpm4hudC+XSeMgZY="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "zig_js-0.0.0-rjCAV-6GAADxFug7rDmPH-uM_XcnJ5NmuAMJCAscMjhi"; format-check> + path = fetchZigArtifact { format-check> + name = "zig_js"; format-check> + url = "https://deps.files.ghostty.org/zig_js-04db83c617da1956ac5adc1cb9ba1e434c1cb6fd.tar.gz"; format-check> + hash = "sha256-r6GdXwrv+jTu0AkTlyN/FuO+N4X+l20gsbS59wrE7V4="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "zig_objc-0.0.0-Ir_Sp5gTAQCvxxR7oVIrPXxXwsfKgVP7_wqoOQrZjFeK"; format-check> + path = fetchZigArtifact { format-check> + name = "zig_objc"; format-check> + url = "https://deps.files.ghostty.org/zig_objc-f356ed02833f0f1b8e84d50bed9e807bf7cdc0ae.tar.gz"; format-check> + hash = "sha256-jWFQ5BrV880qqa9KypltWuRLqNSh21rDxt6Jxp0EoMM="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "wayland-0.5.0-dev-lQa1khrMAQDJDwYFKpdH3HizherB7sHo5dKMECfvxQHe"; format-check> + path = fetchZigArtifact { format-check> + name = "zig_wayland"; format-check> + url = "https://deps.files.ghostty.org/zig_wayland-1b5c038ec10da20ed3a15b0b2a6db1c21383e8ea.tar.gz"; format-check> + hash = "sha256-1wRkixysjdFMyrATxlXdukAc34MwfNj0B6ydYVn+UKw="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "zigimg-0.1.0-8_eo2vHnEwCIVW34Q14Ec-xUlzIoVg86-7FU2ypPtxms"; format-check> + path = fetchZigArtifact { format-check> + name = "zigimg"; format-check> + url = "https://github.com/ivanstepanovftw/zigimg/archive/d7b7ab0ba0899643831ef042bd73289510b39906.tar.gz"; format-check> + hash = "sha256-vkcTloGX+vRw7e6GYJLO9eocYaEOYjXYE0dT7jscZ4A="; format-check> + unpack = true; format-check> + }; format-check> + } format-check> + { format-check> + name = "N-V-__8AAB0eQwD-0MdOEBmz7intriBReIsIDNlukNVoNu6o"; format-check> + path = fetchZigArtifact { format-check> + name = "zlib"; format-check> + url = "https://deps.files.ghostty.org/zlib-1220fed0c74e1019b3ee29edae2051788b080cd96e90d56836eea857b0b966742efb.tar.gz"; format-check> + hash = "sha256-F+iIY/NgBnKrSRgvIXKBtvxNPHYr3jYZNeQ2qVIU0Fw="; format-check> + unpack = false; format-check> + }; format-check> + } format-check> +] format-check> ------------------------------- format-check> aborting due to above changes ^ error: Cannot build '/nix/store/d2xhm4vnr8m4x9cp3895cwdyfjgwxm8g-format-check.drv'. Reason: builder failed with exit code 1. Output paths: /nix/store/3c9vjlpwwmyy61iy2mmnqk81baja9v40-format-check Last 25 log lines: > + hash = "sha256-1wRkixysjdFMyrATxlXdukAc34MwfNj0B6ydYVn+UKw="; > + unpack = true; > + }; > + } > + { > + name = "zigimg-0.1.0-8_eo2vHnEwCIVW34Q14Ec-xUlzIoVg86-7FU2ypPtxms"; > + path = fetchZigArtifact { > + name = "zigimg"; > + url = "https://github.com/ivanstepanovftw/zigimg/archive/d7b7ab0ba0899643831ef042bd73289510b39906.tar.gz"; > + hash = "sha256-vkcTloGX+vRw7e6GYJLO9eocYaEOYjXYE0dT7jscZ4A="; > + unpack = true; > + }; > + } > + { > + name = "N-V-__8AAB0eQwD-0MdOEBmz7intriBReIsIDNlukNVoNu6o"; > + path = fetchZigArtifact { > + name = "zlib"; > + url = "https://deps.files.ghostty.org/zlib-1220fed0c74e1019b3ee29edae2051788b080cd96e90d56836eea857b0b966742efb.tar.gz"; > + hash = "sha256-F+iIY/NgBnKrSRgvIXKBtvxNPHYr3jYZNeQ2qVIU0Fw="; > + unpack = false; > + }; > + } > +] > ------------------------------- > aborting due to above changes ^ For full logs, run: nix log /nix/store/d2xhm4vnr8m4x9cp3895cwdyfjgwxm8g-format-check.drv