From c724aa51882e12dc1191c92a8cf971ce203919a7 Mon Sep 17 00:00:00 2001 From: Techatrix Date: Sat, 28 Mar 2026 00:28:10 +0100 Subject: [PATCH 1/3] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/71caefce12ba78d84fe618cf61644dce01cf3a96?narHash=sha256-yf3iYLGbGVlIthlQIk5/4/EQDZNNEmuqKZkQssMljuw%3D' (2026-03-06) → 'github:NixOS/nixpkgs/1073dad219cb244572b74da2b20c7fe39cb3fa9e?narHash=sha256-tFwzTI0DdDzovdE9%2BRas6CUss0yn8P9XV4Ja6RjA%2BnU%3D' (2026-03-24) • Updated input 'zig-overlay': 'github:mitchellh/zig-overlay/8666155d83bf792956a7c40915508e6d4b2b8716?narHash=sha256-dE8zx8WA54TRmFFQBvA48x/sXGDTP7YaDmY6nNKMAYw%3D' (2026-03-10) → 'github:mitchellh/zig-overlay/e8d24a6b03faf3824103b6fc986c1afa7c90c7c1?narHash=sha256-8cMeRjQOqOzwYmZdH7cV75PeXOGf74RDGR9IsFX%2B7j0%3D' (2026-03-25) --- flake.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index f065575f8..4bf9cb1ac 100644 --- a/flake.lock +++ b/flake.lock @@ -18,11 +18,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1772822230, - "narHash": "sha256-yf3iYLGbGVlIthlQIk5/4/EQDZNNEmuqKZkQssMljuw=", + "lastModified": 1774388614, + "narHash": "sha256-tFwzTI0DdDzovdE9+Ras6CUss0yn8P9XV4Ja6RjA+nU=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "71caefce12ba78d84fe618cf61644dce01cf3a96", + "rev": "1073dad219cb244572b74da2b20c7fe39cb3fa9e", "type": "github" }, "original": { @@ -63,11 +63,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1773145353, - "narHash": "sha256-dE8zx8WA54TRmFFQBvA48x/sXGDTP7YaDmY6nNKMAYw=", + "lastModified": 1774441590, + "narHash": "sha256-8cMeRjQOqOzwYmZdH7cV75PeXOGf74RDGR9IsFX+7j0=", "owner": "mitchellh", "repo": "zig-overlay", - "rev": "8666155d83bf792956a7c40915508e6d4b2b8716", + "rev": "e8d24a6b03faf3824103b6fc986c1afa7c90c7c1", "type": "github" }, "original": { From 4e77c8b2bb5bcab54f369be0523fe09220173d05 Mon Sep 17 00:00:00 2001 From: Techatrix Date: Sat, 28 Mar 2026 00:25:20 +0100 Subject: [PATCH 2/3] remove `@constCast` that is no longer needed. See https://codeberg.org/ziglang/zig/pulls/31544 --- src/DocumentStore.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DocumentStore.zig b/src/DocumentStore.zig index 6affb84c4..182262e7e 100644 --- a/src/DocumentStore.zig +++ b/src/DocumentStore.zig @@ -1713,7 +1713,7 @@ pub fn collectIncludeDirs( .dynamic_linker = std.Target.DynamicLinker.none, }; const arena_allocator_allocator = arena_allocator.allocator(); - const native_paths: std.zig.system.NativePaths = try .detect(arena_allocator_allocator, store.io, &target_info, @constCast(store.config.environ_map)); + const native_paths: std.zig.system.NativePaths = try .detect(arena_allocator_allocator, store.io, &target_info, store.config.environ_map); try include_dirs.ensureUnusedCapacity(allocator, native_paths.include_dirs.items.len); for (native_paths.include_dirs.items) |native_include_dir| { From bbc00acd5247fd07c5d96bdcc895994512494536 Mon Sep 17 00:00:00 2001 From: Techatrix Date: Sat, 28 Mar 2026 00:25:58 +0100 Subject: [PATCH 3/3] Revert "work around upstream issue in package manager" This reverts commit b1a772d24ffe3dc6f0b01c91ec5eceac924497c1. --- deps.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/deps.nix b/deps.nix index 067e12bb7..b9b29bd5d 100644 --- a/deps.nix +++ b/deps.nix @@ -2,7 +2,6 @@ linkFarm, fetchzip, fetchgit, - emptyDirectory, }: linkFarm "zig-packages" [ { @@ -26,9 +25,4 @@ linkFarm "zig-packages" [ hash = "sha256-60F2BOCrl3CreQFmpH3HAz6zzxd3VgJ3iSEkP39gtgQ="; }; } - # workaround: https://codeberg.org/ziglang/zig/issues/31162 - { - name = "N-V-__8AAOncKwEm1F9c5LrT7HMNmRMYX8-fAoqpc6YyTu9X"; - path = emptyDirectory; - } ]