1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00

patched nix flake to use master instead of 0.14.0 for now

This commit is contained in:
Rene Schallner 2025-03-06 14:50:36 +01:00
parent 14a1760dec
commit 3b06a336ef
No known key found for this signature in database

View file

@ -38,7 +38,8 @@
in rec { in rec {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
zigpkgs."0.14.0" # TODO: re-enable this once it is fixed: zigpkgs."0.14.0"
zigpkgs.master
bat bat
wrk wrk
python3 python3
@ -84,7 +85,8 @@
devShells.build = pkgs.mkShell { devShells.build = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
zigpkgs."0.14.0" # zigpkgs."0.14.0"
zigpkgs.master
pkgs.openssl pkgs.openssl
]; ];