diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-04 00:37:41 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-04 00:37:41 +0100 |
commit | d21d4aa636ecf32d47fd667bf97cb4f68d590479 (patch) | |
tree | 630444a2806be98555992312f9d3cb0cdc4756b4 /flake.nix | |
parent | take initial capacity in init function (diff) | |
download | c-hashtable-d21d4aa636ecf32d47fd667bf97cb4f68d590479.tar.gz c-hashtable-d21d4aa636ecf32d47fd667bf97cb4f68d590479.tar.bz2 c-hashtable-d21d4aa636ecf32d47fd667bf97cb4f68d590479.zip |
update zig version
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index e3c7a96..a8665e6 100644 --- a/flake.nix +++ b/flake.nix @@ -3,11 +3,13 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + zig.url = "github:mitchellh/zig-overlay"; }; outputs = { self, nixpkgs, + zig, }: let systems = ["x86_64-darwin" "aarch64-darwin" "x86_64-linux"]; createDevShell = system: let @@ -18,7 +20,7 @@ in pkgs.mkShell { buildInputs = with pkgs; [ - zig + zig.packages."${system}".master gcc gnumake valgrind |