Commit 8d47239b authored by Jost Alemann's avatar Jost Alemann
Browse files

{zig, zls}: default to v0.16.0

parent 208a24bf
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -7609,17 +7609,18 @@ with pkgs;
    ;

  # If this is updated, the default zls version should also be updated to match the default zig version.
  zig = zig_0_15;
  zig = zig_0_16;

  zigStdenv = if stdenv.cc.isZig then stdenv else lowPrio zig.passthru.stdenv;

  inherit (callPackages ../development/tools/zls { })
    zls_0_14
    zls_0_15
    zls_0_16
    ;

  # This should be kept updated to ensure the default zls version matches the default zig version.
  zls = zls_0_15;
  zls = zls_0_16;

  libzint = zint-qt.override { withGUI = false; };