zls: 0.14.0 -> 0.15.0

Changelog: https://zigtools.org/zls/releases/0.15.0/
Diff: https://github.com/zigtools/zls/compare/0.14.0...0.15.0

removed tracy from `deps_0_15.nix` as instructed here:
https://github.com/zigtools/zls/blob/ce6c8f02c78e622421cfc2405c67c5222819ec03/build.zig.zon#L9-L13

Changed files
+3 -8
pkgs
development
tools
top-level
+1 -7
pkgs/development/tools/zls/deps_0_15.nix
···
# generated by zon2nix (https://github.com/nix-community/zon2nix)
+
# manually removed tracy as instructed here: https://github.com/zigtools/zls/blob/ce6c8f02c78e622421cfc2405c67c5222819ec03/build.zig.zon#L9-L13
{ linkFarm, fetchzip }:
···
path = fetchzip {
url = "https://github.com/ziglibs/diffz/archive/a20dd1f11b10819a6f570f98b42e1c91e3704357.tar.gz";
hash = "sha256-y7Ck5XZNnHxmPPWlDAqZZ2g3n67txj5/Zq04AhuW5+M=";
-
};
-
}
-
{
-
name = "N-V-__8AAMeOlQEipHjcyu0TCftdAi9AQe7EXUDJOoVe0k-t";
-
path = fetchzip {
-
url = "https://github.com/wolfpld/tracy/archive/refs/tags/v0.11.1.tar.gz";
-
hash = "sha256-HofqYJT1srDJ6Y1f18h7xtAbI/Gvvz0t9f0wBNnOZK8=";
};
}
{
+2 -1
pkgs/top-level/all-packages.nix
···
zig_0_15
+
# If this is updated, the default zls version should also be updated to match the default zig version.
zig = zig_0_15;
zigStdenv = if stdenv.cc.isZig then stdenv else lowPrio zig.passthru.stdenv;
···
# This should be kept updated to ensure the default zls version matches the default zig version.
-
zls = zls_0_14;
+
zls = zls_0_15;
libzint = zint-qt.override { withGUI = false; };