Skip to content

Commit e934f66

Browse files
committed
feat: update for zig 14.1
1 parent a7a41ef commit e934f66

File tree

3 files changed

+11
-166
lines changed

3 files changed

+11
-166
lines changed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const std = @import("std");
22
const builtin = @import("builtin");
33
const assert = std.debug.assert;
44

5-
const zig_version = std.SemanticVersion{ .major = 0, .minor = 14, .patch = 0 };
5+
const zig_version = std.SemanticVersion{ .major = 0, .minor = 14, .patch = 1 };
66

77
comptime {
88
// Compare versions while allowing different pre/patch metadata.

flake.lock

Lines changed: 5 additions & 156 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,26 @@
22
description = "an asynchronous runtime for Zig";
33

44
inputs = {
5-
nixpkgs.url = "github:nixos/nixpkgs/release-24.11";
6-
iguana.url = "github:mookums/iguana";
5+
nixpkgs.url = "github:nixos/nixpkgs/release-25.05";
76
flake-utils.url = "github:numtide/flake-utils";
87
};
98

109
outputs =
1110
{
1211
nixpkgs,
13-
iguana,
1412
flake-utils,
1513
...
1614
}:
1715
flake-utils.lib.eachDefaultSystem (
1816
system:
1917
let
2018
pkgs = import nixpkgs { inherit system; };
21-
iguanaLib = iguana.lib.${system};
2219
in
2320
{
24-
devShells.default = iguanaLib.mkShell {
25-
zigVersion = "0_14_0";
26-
withZls = true;
27-
28-
extraPackages = with pkgs; [
21+
devShells.default = pkgs.mkShell {
22+
packages = with pkgs; [
23+
zig
24+
zls
2925
openssl
3026
inetutils
3127
wrk

0 commit comments

Comments
 (0)